This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/fopen_s.c

16 lines
241 B
C

#define __STDC_WANT_LIB_EXT1__ 1
#include <stdio.h>
int main()
{
errno_t rc;
FILE *fp;
rc = fopen_s( &fp, "file", "r" );
if( fp != NULL ) {
/* rest of code goes here */
fclose( fp );
}
return( 0 );
}