X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fclose.c;h=f3475974adb3048ce3021ae2bb9f512344e72dd1;hb=f95a96d949a941d03a18cdacf4442656c7db9233;hp=fd85f4c636986b630ebafb5440fe88308a946b26;hpb=9b1e6c0a721f9358d9bbc76410e719a878e27edb;p=pdclib diff --git a/platform/example/functions/_PDCLIB/close.c b/platform/example/functions/_PDCLIB/close.c index fd85f4c..f347597 100644 --- a/platform/example/functions/_PDCLIB/close.c +++ b/platform/example/functions/_PDCLIB/close.c @@ -20,7 +20,7 @@ #include #include -int _PDCLIB_close( _PDCLIB_fd_t fd ) +int _PDCLIB_close( int fd ) { return close( fd ); }