]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/_Exit.c
Added test driver.
[pdclib] / functions / stdlib / _Exit.c
index 14fdb5b9c0fc677df568a429a41eb55474ffffad..e46af397b68daac62c374fd9f2e06a25d67619ba 100644 (file)
@@ -15,6 +15,7 @@
 
 void _Exit( int status )
 {
+    /* TODO: Flush and close open streams. Remove tmpfile() files. */
     _PDCLIB_Exit( status );
 }
 
@@ -26,7 +27,7 @@ void _Exit( int status )
 int main()
 {
     BEGIN_TESTS;
-    TESTCASE( NO_TESTDRIVER );
+    /* TODO: Add testdrivers after flush / close / tmpfile is implemented. */
     return TEST_RESULTS;
 }