Files
rtems/testsuites/libtests/POSIX/flockfile.c
Ralf Corsepius 87fbcc5ea2 New.
2010-04-11 16:44:20 +00:00

17 lines
309 B
C

/*
* Copyright (c) 2009 by
* Ralf Corsépius, Ulm, Germany. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software
* is freely granted, provided that this notice is preserved.
*/
#include <stdio.h>
int main(void)
{
FILE *file = NULL;
flockfile(file);
return 0;
}