]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/stdlib/getenv.c
System includes -> local includes.
[pdclib] / platform / example / functions / stdlib / getenv.c
index 2a8b63466d913cac629e4e36c30919d33ce827b9..30ed1dec51bcb96e05f7646300cfafbcb86ebcfb 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* getenv( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -34,11 +32,12 @@ char * getenv( const char * name )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
-    TESTCASE( strcmp( getenv( "SHELL" ), "/bin/sh" ) == 0 );
+    TESTCASE( strcmp( getenv( "SHELL" ), "/bin/bash" ) == 0 );
+    /* TESTCASE( strcmp( getenv( "SHELL" ), "/bin/sh" ) == 0 ); */
     return TEST_RESULTS;
 }