From 29c87c4d41b0b477580e2dabf9fe9f5faeed5a58 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 6 Jun 1993 18:11:31 -0800 Subject: [PATCH 1/1] 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 --- usr/src/include/ctype.h | 16 ++++++++-------- usr/src/include/signal.h | 2 +- usr/src/include/stdio.h | 2 +- usr/src/include/unistd.h | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) 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_ -- 2.20.1