You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jw...@apache.org on 2002/04/18 19:17:14 UTC

cvs commit: apr/test testatomic.c

jwoolley    02/04/18 10:17:13

  Modified:    test     testatomic.c
  Log:
  Fix a compile break:
  In file included from testatomic.c:61:
  /usr/include/stdlib.h:485: parse error before `;'
  make[1]: *** [testatomic.lo] Error 1
  
  Revision  Changes    Path
  1.14      +2 -2      apr/test/testatomic.c
  
  Index: testatomic.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testatomic.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -d -u -r1.13 -r1.14
  --- testatomic.c	9 Apr 2002 06:45:06 -0000	1.13
  +++ testatomic.c	18 Apr 2002 17:17:13 -0000	1.14
  @@ -52,13 +52,13 @@
    * <http://www.apache.org/>.
    */
   
  +#include <stdio.h>
  +#include <stdlib.h>
   #include "apr_thread_proc.h"
   #include "apr_errno.h"
   #include "apr_general.h"
   #include "apr_atomic.h"
   #include "errno.h"
  -#include <stdio.h>
  -#include <stdlib.h>
   #include "apr_time.h"
   #if APR_HAVE_UNISTD_H
   #include <unistd.h>