X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffunlockfile.c;h=7435607e2b653b1c7a4f95a60912de3748ce6baa;hb=5d2d7d278a2fabd52a252676c6e5b1bb9be630c7;hp=648a22e4d62afc4159c1736a755dd57f4ab1d8ad;hpb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;p=pdclib diff --git a/functions/stdio/funlockfile.c b/functions/stdio/funlockfile.c index 648a22e..7435607 100644 --- a/functions/stdio/funlockfile.c +++ b/functions/stdio/funlockfile.c @@ -1,4 +1,4 @@ -/* funlockfile(FILE * ) +/* funlockfile( FILE * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -12,7 +12,7 @@ #include #include -void funlockfile( FILE * file ) +void _PDCLIB_funlockfile( FILE * file ) { int res = mtx_unlock( &file->lock ); switch(res) {