From: Keith Bostic Date: Mon, 7 Jun 1993 02:11:31 +0000 (-0800) Subject: delete extern declarations of sys_errlist, sys_nerr, sys_signame, and X-Git-Tag: BSD-4_4_Lite1-Snapshot-Development~4118 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/29c87c4d41b0b477580e2dabf9fe9f5faeed5a58?hp=ecbaf4f7fdb72cb29fdd43852f6648f937a2a5f8 delete extern declarations of sys_errlist, sys_nerr, sys_signame, and sys_siglist; they caused nothing but problems as they invariably clashed with declarations by the programs; delete unnecessary externs from ctype.h SCCS-vsn: include/ctype.h 5.11 SCCS-vsn: include/signal.h 5.7 SCCS-vsn: include/stdio.h 5.27 SCCS-vsn: include/unistd.h 5.32 --- diff --git a/usr/src/include/ctype.h b/usr/src/include/ctype.h index 7cd0d0c7c1..6f6f69611f 100644 --- a/usr/src/include/ctype.h +++ b/usr/src/include/ctype.h @@ -7,7 +7,7 @@ * * %sccs.include.redist.c% * - * @(#)ctype.h 8.1 (Berkeley) %G% + * @(#)ctype.h 5.11 (Berkeley) %G% */ #ifndef _CTYPE_H_ @@ -59,9 +59,9 @@ /* See comments in about _BSD_RUNE_T_. */ __BEGIN_DECLS -extern unsigned long ___runetype __P((_BSD_RUNE_T_)); -extern _BSD_RUNE_T_ ___tolower __P((_BSD_RUNE_T_)); -extern _BSD_RUNE_T_ ___toupper __P((_BSD_RUNE_T_)); +unsigned long ___runetype __P((_BSD_RUNE_T_)); +_BSD_RUNE_T_ ___tolower __P((_BSD_RUNE_T_)); +_BSD_RUNE_T_ ___toupper __P((_BSD_RUNE_T_)); __END_DECLS /* @@ -108,10 +108,10 @@ tolower(_BSD_RUNE_T_ c) #else /* !_USE_CTYPE_INLINE_ */ __BEGIN_DECLS -extern int __istype __P((_BSD_RUNE_T_, unsigned long)); -extern int __isctype __P((_BSD_RUNE_T_, unsigned long)); -extern _BSD_RUNE_T_ toupper __P((_BSD_RUNE_T_)); -extern _BSD_RUNE_T_ tolower __P((_BSD_RUNE_T_)); +int __istype __P((_BSD_RUNE_T_, unsigned long)); +int __isctype __P((_BSD_RUNE_T_, unsigned long)); +_BSD_RUNE_T_ toupper __P((_BSD_RUNE_T_)); +_BSD_RUNE_T_ tolower __P((_BSD_RUNE_T_)); __END_DECLS #endif /* _USE_CTYPE_INLINE_ */ diff --git a/usr/src/include/signal.h b/usr/src/include/signal.h index 6f442d2a92..0735408850 100644 --- a/usr/src/include/signal.h +++ b/usr/src/include/signal.h @@ -4,7 +4,7 @@ * * %sccs.include.redist.c% * - * @(#)signal.h 8.1 (Berkeley) %G% + * @(#)signal.h 5.7 (Berkeley) %G% */ #ifndef _USER_SIGNAL_H diff --git a/usr/src/include/stdio.h b/usr/src/include/stdio.h index 1c8c9b8a47..782a162989 100644 --- a/usr/src/include/stdio.h +++ b/usr/src/include/stdio.h @@ -7,7 +7,7 @@ * * %sccs.include.redist.c% * - * @(#)stdio.h 8.1 (Berkeley) %G% + * @(#)stdio.h 5.27 (Berkeley) %G% */ #ifndef _STDIO_H_ diff --git a/usr/src/include/unistd.h b/usr/src/include/unistd.h index c1d7be6ab1..b50806c95e 100644 --- a/usr/src/include/unistd.h +++ b/usr/src/include/unistd.h @@ -4,7 +4,7 @@ * * %sccs.include.redist.c% * - * @(#)unistd.h 8.1 (Berkeley) %G% + * @(#)unistd.h 5.32 (Berkeley) %G% */ #ifndef _UNISTD_H_