added params to func decls when STDC_HEADERS is not defined

This commit is contained in:
Todd C. Miller
1994-08-08 04:06:48 +00:00
parent a3bbe79d68
commit 38b6d5f1df
5 changed files with 27 additions and 18 deletions

View File

@@ -53,8 +53,8 @@ static char rcsid[] = "$Id$";
#endif /* HAVE_MALLOC_H */
#ifndef STDC_HEADERS
extern char *malloc();
extern char *strcpy();
extern char *malloc __P((unsigned));
extern char *strcpy __P((char *, char *));
#endif /* !STDC_HEADERS */