Use __FBSDID vs. rcsid[]. Also protect sccs[] and copyright[] from GCC 3.3.

This commit is contained in:
David E. O'Brien 2003-05-04 02:54:49 +00:00
parent 1542dbb49a
commit 77b7cdf199
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114630
38 changed files with 158 additions and 162 deletions

View File

@ -30,16 +30,16 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $FreeBSD$
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* Copyright (C) 1990 by the Massachusetts Institute of Technology * Copyright (C) 1990 by the Massachusetts Institute of Technology

View File

@ -29,17 +29,15 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*
* $FreeBSD$
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef ENCRYPTION #ifdef ENCRYPTION
# ifdef AUTHENTICATION # ifdef AUTHENTICATION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)authenc.c 8.1 (Berkeley) 6/6/93"; static const char sccsid[] = "@(#)authenc.c 8.1 (Berkeley) 6/6/93";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef AUTHENTICATION #ifdef AUTHENTICATION
#ifdef ENCRYPTION #ifdef ENCRYPTION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)commands.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)commands.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/un.h> #include <sys/un.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93"; static const char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)ring.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)ring.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* This defines a structure for a ring buffer. * This defines a structure for a ring buffer.

View File

@ -31,15 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
#include <stdlib.h>
#include <err.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* The following routines try to encapsulate what is system dependent * The following routines try to encapsulate what is system dependent
@ -49,9 +47,11 @@ static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
#include <sys/param.h> #include <sys/param.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/time.h> #include <sys/time.h>
#include <err.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <signal.h> #include <signal.h>
#include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <arpa/telnet.h> #include <arpa/telnet.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)telnet.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)telnet.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)terminal.c 8.2 (Berkeley) 2/16/95"; static const char sccsid[] = "@(#)terminal.c 8.2 (Berkeley) 2/16/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <arpa/telnet.h> #include <arpa/telnet.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)utilities.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)utilities.c 8.3 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#define TELOPTS #define TELOPTS
#define TELCMDS #define TELCMDS

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)authenc.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)authenc.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef AUTHENTICATION #ifdef AUTHENTICATION
#ifdef ENCRYPTION #ifdef ENCRYPTION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef lint
#if 0 #if 0
#ifndef lint
static const char sccsid[] = "@(#)global.c 8.1 (Berkeley) 6/4/93"; static const char sccsid[] = "@(#)global.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* Allocate global variables. We do this * Allocate global variables. We do this

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)slc.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)slc.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdarg.h> #include <stdarg.h>
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)sys_term.c 8.4+1 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)sys_term.c 8.4+1 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/tty.h> #include <sys/tty.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"
#include "pathnames.h" #include "pathnames.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)termstat.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)termstat.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef lint
#if 0 #if 0
#ifndef lint
static const char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef __FreeBSD__ #ifdef __FreeBSD__
#include <locale.h> #include <locale.h>

View File

@ -30,16 +30,16 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $FreeBSD$
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* Copyright (C) 1990 by the Massachusetts Institute of Technology * Copyright (C) 1990 by the Massachusetts Institute of Technology

View File

@ -29,17 +29,15 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*
* $FreeBSD$
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)enc_des.c 8.3 (Berkeley) 5/30/95";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef ENCRYPTION #ifdef ENCRYPTION
# ifdef AUTHENTICATION # ifdef AUTHENTICATION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)authenc.c 8.1 (Berkeley) 6/6/93"; static const char sccsid[] = "@(#)authenc.c 8.1 (Berkeley) 6/6/93";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef AUTHENTICATION #ifdef AUTHENTICATION
#ifdef ENCRYPTION #ifdef ENCRYPTION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)commands.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)commands.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/un.h> #include <sys/un.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93"; static const char sccsid[] = "@(#)network.c 8.2 (Berkeley) 12/15/93";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)ring.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)ring.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* This defines a structure for a ring buffer. * This defines a structure for a ring buffer.

View File

@ -31,15 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
#include <stdlib.h>
#include <err.h>
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* The following routines try to encapsulate what is system dependent * The following routines try to encapsulate what is system dependent
@ -49,9 +47,11 @@ static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
#include <sys/param.h> #include <sys/param.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/time.h> #include <sys/time.h>
#include <err.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <signal.h> #include <signal.h>
#include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <arpa/telnet.h> #include <arpa/telnet.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)telnet.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)telnet.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)terminal.c 8.2 (Berkeley) 2/16/95"; static const char sccsid[] = "@(#)terminal.c 8.2 (Berkeley) 2/16/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <arpa/telnet.h> #include <arpa/telnet.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)utilities.c 8.3 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)utilities.c 8.3 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#define TELOPTS #define TELOPTS
#define TELCMDS #define TELCMDS

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)authenc.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)authenc.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef AUTHENTICATION #ifdef AUTHENTICATION
#ifdef ENCRYPTION #ifdef ENCRYPTION

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef lint
#if 0 #if 0
#ifndef lint
static const char sccsid[] = "@(#)global.c 8.1 (Berkeley) 6/4/93"; static const char sccsid[] = "@(#)global.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/* /*
* Allocate global variables. We do this * Allocate global variables. We do this

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)slc.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)slc.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdarg.h> #include <stdarg.h>
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)sys_term.c 8.4+1 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)sys_term.c 8.4+1 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h> #include <sys/types.h>
#include <sys/tty.h> #include <sys/tty.h>

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"
#include "pathnames.h" #include "pathnames.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #if 0
__FBSDID("$FreeBSD$");
#ifndef lint #ifndef lint
static const char sccsid[] = "@(#)termstat.c 8.2 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)termstat.c 8.2 (Berkeley) 5/30/95";
#endif #endif
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "telnetd.h" #include "telnetd.h"

View File

@ -31,13 +31,13 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifndef lint
#if 0 #if 0
#ifndef lint
static const char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95"; static const char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifdef __FreeBSD__ #ifdef __FreeBSD__
#include <locale.h> #include <locale.h>