]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/free.c
Whitespace cleanups.
[pdclib] / functions / stdlib / free.c
index 4370487750ad2dbddbc71860833926f1a34de3c7..b1cdc75a9d6095ed663b51435448a8720e21cefa 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* void free( void * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,10 +8,7 @@
 
 #ifndef REGTEST
 
-#ifndef _PDCLIB_INT_H
-#define _PDCLIB_INT_H _PDCLIB_INT_H
-#include <_PDCLIB_int.h>
-#endif
+#include "_PDCLIB_int.h"
 
 /* TODO: Primitive placeholder. Much room for improvement. */
 
@@ -42,7 +37,9 @@ void free( void * ptr )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
+
 #include <stdbool.h>
 
 int main( void )