ditch whitespace before GLIB_SYSDEFS #includes, the # needs to be in
authorManish Singh <yosh@src.gnome.org>
Tue, 5 Jan 1999 20:29:49 +0000 (20:29 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 5 Jan 1999 20:29:49 +0000 (20:29 +0000)
* configure.in: ditch whitespace before GLIB_SYSDEFS #includes,
the # needs to be in column 1

* gthread/testgthread.c: cleanups

* tests/node-test.c: #include unistd.h for exit()

-Yosh

configure.in
gthread/testgthread.c
tests/node-test.c

index 5c13a3d0943423163ea387a35a97c41f729cda88..901bb5cacbdbb034794ac76a2564074ab9b2ba87 100644 (file)
@@ -742,8 +742,9 @@ GLIB_IF_VAR_EQ(mutex_has_default, yes,
 dnl ****************************************
 dnl *** GLib POLL* compatibility defines ***
 dnl ****************************************
-GLIB_SYSDEFS([#include <sys/types.h>
-       #include <sys/poll.h>],
+GLIB_SYSDEFS(
+[#include <sys/types.h>
+#include <sys/poll.h>],
        POLLIN:1 POLLOUT:4 POLLPRI:2 POLLERR:8 POLLHUP:16 POLLNVAL:32,
        glibconfig-sysdefs.h,
        =)
index b71116fe3b3943123e32dba45a4e05d03ce27034..c2149d461249a8d65efd420630968c70d4dba7b3 100644 (file)
@@ -8,7 +8,7 @@
 #define TEST_PRIVATE_ROUNDS 5
 
 void
-test_mutexes ()
+test_mutexes (void)
 {
   GMutex *mutex = NULL;
   GCond *cond = NULL;
@@ -128,7 +128,7 @@ wait_thread (double seconds)
 }
 
 gpointer
-private_constructor ()
+private_constructor (void)
 {
   gpointer *result = g_new (gpointer, 2);
   result[0] = 0;
@@ -169,7 +169,7 @@ test_private_func (void *data)
 }
 
 void
-test_private ()
+test_private (void)
 {
   int i;
   gpointer threads[TEST_PRIVATE_THREADS];
@@ -185,7 +185,7 @@ test_private ()
 }
 
 int
-main ()
+main (void)
 {
   test_mutexes ();
 
index d0044f704911d9f2b0a3c1f9b96af1dc7cb4f039..682165f5237ef7597ca8d8416f4af5cd2d94af9d 100644 (file)
  */
 #undef G_LOG_DOMAIN
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 #include <string.h>
+
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
 #include "glib.h"
 
 int array[10000];