source: rtems/cpukit/libcsupport/src/flockfile.c @ c7989fe

4.104.115
Last change on this file since c7989fe was c7989fe, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/01/10 at 04:19:00

2010-05-01 Ralf Corsépius <ralf.corsepius@…>

  • libcsupport/Makefile.am: Add libcsupport/src/flockfile.c, libcsupport/src/ftrylockfile.c, libcsupport/src/funlockfile.c.
  • libcsupport/src/flockfile.c, libcsupport/src/ftrylockfile.c, libcsupport/src/funlockfile.c: New (stub functions).
  • Property mode set to 100644
File size: 446 bytes
Line 
1/*
2 * Copyright (c) 2009 by
3 * Ralf Corsépius, Ulm, Germany. All rights reserved.
4 *
5 * Permission to use, copy, modify, and distribute this software
6 * is freely granted, provided that this notice is preserved.
7 */
8
9#if HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#if defined(RTEMS_NEWLIB) && !defined(HAVE_FLOCKFILE) && defined(HAVE_DECL_FLOCKFILE)
14
15#include <stdio.h>
16
17/* This is a non-functional stub */
18void flockfile(FILE* file)
19{
20}
21
22#endif
Note: See TracBrowser for help on using the repository browser.