From: Kurt Zeilenga Date: Mon, 15 Mar 1999 01:06:02 +0000 (+0000) Subject: Add 'extern' to externals. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~374 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5f3c7a88dc3632a799804967d1c9abc9b4774c0f;p=openldap Add 'extern' to externals. --- diff --git a/include/ac/alloca.h b/include/ac/alloca.h index 69e823d841..e8bb452fe2 100644 --- a/include/ac/alloca.h +++ b/include/ac/alloca.h @@ -23,7 +23,7 @@ #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ -char *alloca (); +extern char *alloca (); # endif # endif # endif diff --git a/include/ac/setproctitle.h b/include/ac/setproctitle.h index 2866d211f5..f97074e7c2 100644 --- a/include/ac/setproctitle.h +++ b/include/ac/setproctitle.h @@ -18,7 +18,7 @@ # include #else /* use lutil version */ - void setproctitle LDAP_P((const char *fmt, ...)); + extern void setproctitle LDAP_P((const char *fmt, ...)); extern int Argc; extern char **Argv; #endif