Update.
authorAndreas Jaeger <aj@suse.de>
Thu, 24 Aug 2000 14:11:19 +0000 (14:11 +0000)
committerAndreas Jaeger <aj@suse.de>
Thu, 24 Aug 2000 14:11:19 +0000 (14:11 +0000)
* Examples/ex13.c: Include <string.h> for strerror prototype and
<stdlib.h> for abort prototype.

linuxthreads/ChangeLog
linuxthreads/Examples/ex13.c

index 72674f8..2fce6eb 100644 (file)
@@ -1,6 +1,7 @@
 2000-08-24  Andreas Jaeger  <aj@suse.de>
 
-       * Examples/ex13.c: Include <string.h> for for strerror prototype.
+       * Examples/ex13.c: Include <string.h> for strerror prototype and
+       <stdlib.h> for abort prototype.
        (pthr_cond_signal_mutex): Rewrite to silence GCC.
        (thread_start): Remove unused variable err.
        (main): Silence GCC warnings.
index f50a96e..3a03479 100644 (file)
@@ -21,6 +21,7 @@
 #include <errno.h>
 #include <pthread.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include <unistd.h>