X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffputc.c;h=c6120ed71b5b1767cc81888beb78094da20cc46c;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=beff43a5aa4b34a3ab77532b3b11c8106b1d0f14;hpb=393020b6e48719d27699dea6b29e53025bbd5123;p=pdclib diff --git a/functions/stdio/fputc.c b/functions/stdio/fputc.c index beff43a..c6120ed 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). @@ -8,10 +6,10 @@ #include -#include <_PDCLIB_glue.h> - #ifndef REGTEST +#include <_PDCLIB_glue.h> + /* Write the value c (cast to unsigned char) to the given stream. Returns c if successful, EOF otherwise. If a write error occurs, the error indicator of the stream is set.