affinity-1.c: Include <sys/wait.h>.
authorMarek Polacek <polacek@redhat.com>
Mon, 6 Oct 2014 11:54:24 +0000 (11:54 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Mon, 6 Oct 2014 11:54:24 +0000 (11:54 +0000)
* testsuite/libgomp.c/affinity-1.c: Include <sys/wait.h>.
* testsuite/libgomp.c/nqueens-1.c: Include <stdlib.h>.
* testsuite/libgomp.c/thread-limit-1.c: Include <omp.h>
* testsuite/libgomp.c/thread-limit-2.c: Likewise.

From-SVN: r215927

libgomp/ChangeLog
libgomp/testsuite/libgomp.c/affinity-1.c
libgomp/testsuite/libgomp.c/nqueens-1.c
libgomp/testsuite/libgomp.c/thread-limit-1.c
libgomp/testsuite/libgomp.c/thread-limit-2.c

index b5de70b45c39cdb3e8a1443dea4403c531e8e6d5..661653e1ac83fb82d247e72fe348ffcf60cca6b0 100644 (file)
@@ -1,3 +1,10 @@
+2014-10-06  Marek Polacek  <polacek@redhat.com>
+
+       * testsuite/libgomp.c/affinity-1.c: Include <sys/wait.h>.
+       * testsuite/libgomp.c/nqueens-1.c: Include <stdlib.h>.
+       * testsuite/libgomp.c/thread-limit-1.c: Include <omp.h>
+       * testsuite/libgomp.c/thread-limit-2.c: Likewise.
+
 2014-10-06  Marek Polacek  <polacek@redhat.com>
 
        * testsuite/libgomp.c/affinity-1.c: Fix implicit declarations.
index a1a2a12e56c7c8b00af8f0d6edd270995b9a7896..21f344cada3f3523dcd7863c0e70f1ee28006930 100644 (file)
@@ -31,7 +31,7 @@
 
 #ifdef DO_FORK
 #include <signal.h>
-pid_t waitpid (pid_t, int *, int);
+#include <sys/wait.h>
 #endif
 #ifdef HAVE_PTHREAD_AFFINITY_NP
 #include <sched.h>
index ed6c17921ea5b13e2c1f1b9f1614d079b8bbca8e..9742b7a18df212417c9713a20c9fd8f8fa5afec0 100644 (file)
@@ -5,8 +5,8 @@
 #include <omp.h>
 #include <stdio.h>
 #include <string.h>
+#include <stdlib.h>
 
-unsigned long int strtoul(const char *, char **, int);
 int cnt;
 #pragma omp threadprivate (cnt)
 
index 7571f23e24d6282869dc79f1bce5385ad3d90dae..1d9794a7a4f0b8254c45df2ef95f88a562243d0c 100644 (file)
@@ -3,11 +3,7 @@
 
 #include <stdlib.h>
 #include <unistd.h>
-
-extern int omp_get_thread_limit (void);
-extern int omp_set_dynamic (int);
-extern void omp_set_nested (int);
-extern int omp_get_num_threads (void);
+#include <omp.h>
 
 int
 main ()
index ca9ad23b31f228f06ea9e1c0d71ad054d550246e..1a97fb6298596122b041eb8270bd802e9bd85bf8 100644 (file)
@@ -3,11 +3,7 @@
 
 #include <stdlib.h>
 #include <unistd.h>
-
-extern int omp_get_thread_limit (void);
-extern int omp_set_dynamic (int);
-extern void omp_set_nested (int);
-extern int omp_get_num_threads (void);
+#include <omp.h>
 
 int
 main ()