]> pd.if.org Git - pdclib/blobdiff - platform/posix/functions/_PDCLIB/_PDCLIB_Exit.c
Cosmetic comment fixes.
[pdclib] / platform / posix / functions / _PDCLIB / _PDCLIB_Exit.c
index 6e2428386172711c184598ae327aa863f0f92eaf..6af5459c1a0782b4fa1c41c876d6377b571c5bca 100644 (file)
@@ -1,17 +1,13 @@
-/* _PDCLIB_exit( int )
+/* _PDCLIB_Exit( int )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
-/* This is an example implementation of _PDCLIB_exit() fit for use with POSIX
-   kernels.
-*/
-
 #include <stdlib.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 extern void _exit( int status ) _PDCLIB_noreturn;
 
@@ -23,7 +19,7 @@ void _PDCLIB_Exit( int status )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {