]> granicus.if.org Git - shadow/commitdiff
Include "prototypes.h" to make sure the exported prototypes are
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 5 Jan 2008 13:23:22 +0000 (13:23 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 5 Jan 2008 13:23:22 +0000 (13:23 +0000)
the ones used for the definition of functions.

ChangeLog
lib/fputsx.c
lib/port.c
libmisc/pwd_init.c
libmisc/strtoday.c
libmisc/tz.c
libmisc/utmp.c
libmisc/xmalloc.c

index 45e6bff40c84262dcdcbaf71d3e52aec0e6cf5ac..e90decc6f98087f92217ed7a05a50f64a9662cff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@
        putgrent prototype.
        * lib/prototypes.h: "shadowio.h" was included for the definition
        of the spwd structure. Replace this include by <shadow.h>
+       * libmisc/xmalloc.c, libmisc/utmp.c, libmisc/strtoday.c,
+       libmisc/pwd_init.c, libmisc/tz.c, lib/port.c, lib/fputsx.c:
+       Include "prototypes.h" to make sure the exported prototypes are
+       the ones used for the definition of functions.
 
 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
 
index 565fb98715bbc22e0accb859c26b9170897b7c95..fb0fe5c568f59bb0b30751fec4b2d68135fb8641 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <stdio.h>
 #include "defines.h"
+#include "prototypes.h"
 
 #ident "$Id$"
 
index 814b10c14fe2e7192cee0968276efc208072de99..68939bb18d687c241164e596a1263d44308c9672 100644 (file)
@@ -35,6 +35,7 @@
 #include <ctype.h>
 #include <errno.h>
 #include "defines.h"
+#include "prototypes.h"
 #include "port.h"
 extern int errno;
 
index 7db1e1f14c4c076d5f9009e193be305da60489b1..6572e60bb9f60463417285590aa9743bc43e2c16 100644 (file)
@@ -10,6 +10,9 @@
 #ifdef HAVE_SYS_RESOURCE_H
 #include <sys/resource.h>
 #endif
+
+#include "prototypes.h"
+
 /*
  * pwd_init - ignore signals, and set resource limits to safe
  * values.  Call this before modifying password files, so that
index 3fa6dc99ef38519c68c4e22a93ba6d8dfd4ae545..33bbacfcc7102ff0454ae90e29a8ad9042a89798 100644 (file)
@@ -36,6 +36,8 @@
 #ident "$Id$"
 
 #include "defines.h"
+#include "prototypes.h"
+
 #ifndef USE_GETDATE
 #define USE_GETDATE 1
 #endif
index 6ea0fcebd74fa7764e0cfacf90cd77f290a34c05..261946f916822d1d84e5cd6950af9410168d410f 100644 (file)
@@ -34,6 +34,7 @@
 #include <stdio.h>
 #include <string.h>
 #include "defines.h"
+#include "prototypes.h"
 #include "getdef.h"
 /*
  * tz - return local timezone name
index 8f52bb984b6fa8ad6d5acfe9119e55ffe3519d07..7ddf24838b302393aa26a7ef736c9175a9fd1233 100644 (file)
@@ -30,6 +30,7 @@
 #include <config.h>
 
 #include "defines.h"
+#include "prototypes.h"
 
 #include <utmp.h>
 
index 77260908bec848cd1d269ed31bcbbf241bd424d2..5be4fdcbfea1246de29698ff5c0b687bf5b01fe8 100644 (file)
@@ -13,6 +13,8 @@
 
 #include <stdio.h>
 #include "defines.h"
+#include "prototypes.h"
+
 char *xmalloc (size_t size)
 {
        char *ptr;