X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fopen.c;h=b0b26cb582c0dd0360e069a216f5d2a12f4e0e09;hb=3437c82f9f1d5379fd0c01407ce4601b22dd1937;hp=d3aafb2c23b7b73932e37aee48fa761c6db783f9;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/platform/example/functions/_PDCLIB/open.c b/platform/example/functions/_PDCLIB/open.c index d3aafb2..b0b26cb 100644 --- a/platform/example/functions/_PDCLIB/open.c +++ b/platform/example/functions/_PDCLIB/open.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* _PDCLIB_open( char const * const, int ) This file is part of the Public Domain C Library (PDCLib). @@ -22,7 +20,7 @@ #include #include -_PDCLIB_fd_t _PDCLIB_open( char const * const filename, int mode ) +_PDCLIB_fd_t _PDCLIB_open( char const * const filename, unsigned int mode ) { int osmode = 0; if ( mode & _PDCLIB_FRW ) osmode |= O_RDWR;