X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Ffillbuffer.c;h=e3cb9bec3f669305e92001daeada532328901854;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=a5520a34f43b0bc770862568a88d2ba37b5547df;hpb=ce0e5d8cd76b50f239fb8e95170502b146247b35;p=pdclib diff --git a/platform/example/functions/_PDCLIB/fillbuffer.c b/platform/example/functions/_PDCLIB/fillbuffer.c index a5520a3..e3cb9be 100644 --- a/platform/example/functions/_PDCLIB/fillbuffer.c +++ b/platform/example/functions/_PDCLIB/fillbuffer.c @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream ) +/* _PDCLIB_fillbuffer( struct _PDCLIB_file_t * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -13,7 +11,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" #include @@ -52,7 +50,7 @@ int _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream ) _PDCLIB_errno = _PDCLIB_ERROR; break; default: - /* This should probably be something like EUNKNOWN. */ + /* This should be something like EUNKNOWN. */ _PDCLIB_errno = _PDCLIB_ERROR; break; } @@ -67,7 +65,7 @@ int _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {