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

17 lines
324 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;
int ret = ftrylockfile(file);
return ret;
}