X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffputc.c;h=1ea99e9d952adb4524693f4ca5c2e177b3d2604b;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=818d45f645057fe4c93954964eb6b9d4c526e098;hpb=44db4763a69211be0afa0b336adbb16a0b10f2cb;p=pdclib diff --git a/functions/stdio/fputc.c b/functions/stdio/fputc.c index 818d45f..1ea99e9 100644 --- a/functions/stdio/fputc.c +++ b/functions/stdio/fputc.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* fputc( int, FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -10,7 +8,7 @@ #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" /* Write the value c (cast to unsigned char) to the given stream. Returns c if successful, EOF otherwise. @@ -37,7 +35,7 @@ int fputc( int c, struct _PDCLIB_file_t * stream ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {