X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2Fstdio%2Ftmpfile.c;fp=platform%2Fexample%2Ffunctions%2Fstdio%2Ftmpfile.c;h=79c9569c50f912b7ae5a6c6530fc3c871c29cf12;hb=e5112b619d1aae8ffc439389cfcbd3b2b4bd2454;hp=0000000000000000000000000000000000000000;hpb=77d3087b1ec0eba88e55de1e90efc43948a023c5;p=pdclib diff --git a/platform/example/functions/stdio/tmpfile.c b/platform/example/functions/stdio/tmpfile.c new file mode 100644 index 0000000..79c9569 --- /dev/null +++ b/platform/example/functions/stdio/tmpfile.c @@ -0,0 +1,29 @@ +/* $Id$ */ + +/* tmpfile( void ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#ifndef REGTEST +#include <_PDCLIB_int.h> + +struct _PDCLIB_file_t * tmpfile( void ) +{ + /* TODO: Implement */ + return NULL; +} + +#endif REGTEST + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main() +{ + TESTCASE( NO_TESTDRIVER ); + return TEST_RESULTS; +} + +#endif