Add 'extern' to externals.

This commit is contained in:
Kurt Zeilenga 1999-03-15 01:06:02 +00:00
parent a8d7ee12a5
commit 5f3c7a88dc
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@
#pragma alloca #pragma alloca
# else # else
# ifndef alloca /* predefined by HP cc +Olibcalls */ # ifndef alloca /* predefined by HP cc +Olibcalls */
char *alloca (); extern char *alloca ();
# endif # endif
# endif # endif
# endif # endif

View file

@ -18,7 +18,7 @@
# include <libutil.h> # include <libutil.h>
#else #else
/* use lutil version */ /* use lutil version */
void setproctitle LDAP_P((const char *fmt, ...)); extern void setproctitle LDAP_P((const char *fmt, ...));
extern int Argc; extern int Argc;
extern char **Argv; extern char **Argv;
#endif #endif