strtoumax: fix typo in previous commit.
[gnulib.git] / tests / test-environ.c
index 3924288..cb3d9f6 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of environ variable.
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -20,7 +20,6 @@
 
 #include <unistd.h>
 
-#include <stdlib.h>
 #include <string.h>
 
 int
@@ -37,8 +36,8 @@ main ()
   for (; (string = *remaining_variables) != NULL; remaining_variables++)
     {
       if (strncmp (string, "PATH=", 5) == 0)
-       /* Found the PATH environment variable.  */
-       return 0;
+        /* Found the PATH environment variable.  */
+        return 0;
     }
   /* Failed to find the PATH environment variable.  */
   return 1;