1/* system( const char * ) 2 3 This file is part of the Public Domain C Library (PDCLib). 4 Permission is granted to use, modify, and / or redistribute at will. 5*/ 6 7#include <stdlib.h> 8 9/* This is a stub implementation of getenv 10*/ 11 12int system( const char * string ) 13{ 14 return -1; 15} 16 17#ifdef TEST 18#include "_PDCLIB_test.h" 19 20int main( void ) 21{ 22 return TEST_RESULTS; 23} 24 25#endif 26 27