]> pd.if.org Git - pdclib/blobdiff - functions/stdio/funlockfile.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / funlockfile.c
index 648a22e4d62afc4159c1736a755dd57f4ab1d8ad..4e9ed045f4c12df547721cd8f138f092888565cc 100644 (file)
@@ -1,4 +1,4 @@
-/* funlockfile(FILE * )\r
+/* funlockfile( FILE * )\r
 \r
    This file is part of the Public Domain C Library (PDCLib).\r
    Permission is granted to use, modify, and / or redistribute at will.\r
@@ -8,11 +8,11 @@
 #include <stdarg.h>\r
 \r
 #ifndef REGTEST\r
-#include <_PDCLIB_io.h>\r
+#include "_PDCLIB_io.h"\r
 #include <threads.h>\r
 #include <stdlib.h>\r
 \r
-void funlockfile( FILE * file )\r
+void _PDCLIB_funlockfile( FILE * file )\r
 {\r
     int res = mtx_unlock( &file->lock );\r
     switch(res) {\r
@@ -27,7 +27,7 @@ void funlockfile( FILE * file )
 #endif\r
 \r
 #ifdef TEST\r
-#include <_PDCLIB_test.h>\r
+#include "_PDCLIB_test.h"\r
 \r
 int main( void )\r
 {\r