summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/POSIX/flockfile.c
blob: 7ab69a49f296272ea104ec4e10d9c46615906f57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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;
}