]> pd.if.org Git - pdclib/blobdiff - functions/stdio/flockfile.c
dos2unix
[pdclib] / functions / stdio / flockfile.c
index c37699b91e2d5dcb516da7a011b09ae238cb8974..559f46abd33d47c94b082d336ba90140a8160af8 100644 (file)
@@ -1,33 +1,33 @@
-/* flockfile(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
-*/\r
-\r
-#include <stdio.h>\r
-#include <stdarg.h>\r
-\r
-#ifndef REGTEST\r
-#include "_PDCLIB_io.h"\r
-#include <threads.h>\r
-#include <stdlib.h>\r
-\r
-void _PDCLIB_flockfile( FILE * file )\r
-{\r
-    if( mtx_lock( &file->lock ) != thrd_success ) {\r
-        abort();\r
-    }\r
-}\r
-\r
-#endif\r
-\r
-#ifdef TEST\r
-#include "_PDCLIB_test.h"\r
-\r
-int main( void )\r
-{\r
-    // Not tested here - tested by other stdio test drivers\r
-    return TEST_RESULTS;\r
-}\r
-\r
-#endif\r
+/* flockfile(FILE * )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdio.h>
+#include <stdarg.h>
+
+#ifndef REGTEST
+#include "_PDCLIB_io.h"
+#include <threads.h>
+#include <stdlib.h>
+
+void _PDCLIB_flockfile( FILE * file )
+{
+    if( mtx_lock( &file->lock ) != thrd_success ) {
+        abort();
+    }
+}
+
+#endif
+
+#ifdef TEST
+#include "_PDCLIB_test.h"
+
+int main( void )
+{
+    // Not tested here - tested by other stdio test drivers
+    return TEST_RESULTS;
+}
+
+#endif