X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=functions%2Fstdio%2Ftmpnam.c;h=6e8641d380bdf233051aa86475fc93d675f38a42;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hp=a9f5385c1e0723e45eba248a1e44091a14a3553c;hpb=9491125d4e428b554cae97c70d4cd824f4e9bd41;p=pdclib diff --git a/functions/stdio/tmpnam.c b/functions/stdio/tmpnam.c index a9f5385..6e8641d 100644 --- a/functions/stdio/tmpnam.c +++ b/functions/stdio/tmpnam.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* tmpnam( char * ) This file is part of the Public Domain C Library (PDCLib). @@ -11,7 +9,7 @@ #ifndef REGTEST #include -#include <_PDCLIB_glue.h> +#include "_PDCLIB_io.h" char * tmpnam( char * s ) { @@ -29,7 +27,7 @@ char * tmpnam( char * s ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include