]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/close.c
Comment cleanups.
[pdclib] / platform / example / functions / _PDCLIB / close.c
index fd85f4c636986b630ebafb5440fe88308a946b26..b823a0c40523abf1f7f0eb78681ad1a6cfa3be48 100644 (file)
@@ -1,6 +1,4 @@
-/* $Id$ */
-
-/* _PDCLIB_close( _PDCLIB_fd_t fd )
+/* _PDCLIB_close( _PDCLIB_fd_t )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 #ifndef REGTEST
 #include <_PDCLIB_glue.h>
 
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
+extern int close( int fd );
 
-int _PDCLIB_close( _PDCLIB_fd_t fd )
+int _PDCLIB_close( int fd )
 {
     return close( fd );
 }