source: rtems/cpukit/libcsupport/src/flockfile.c @ 17c6ad6a

4.115
Last change on this file since 17c6ad6a was 17c6ad6a, checked in by Alex Ivanov <alexivanov97@…>, on 12/11/12 at 21:51:08

libcsupport: Doxygen enhancement GCI task #4

http://www.google-melange.com/gci/task/view/google/gci2012/8009205

  • Property mode set to 100644
File size: 546 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Lock File for Stdio
5 *  @ingroup SET
6 */
7/*
8 * Copyright (c) 2009 by
9 * Ralf Corsépius, Ulm, Germany. All rights reserved.
10 *
11 * Permission to use, copy, modify, and distribute this software
12 * is freely granted, provided that this notice is preserved.
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#if defined(RTEMS_NEWLIB) && !defined(HAVE_FLOCKFILE) && defined(HAVE_DECL_FLOCKFILE)
20
21#include <stdio.h>
22
23/**
24 *  This is a non-functional stub
25 */
26void flockfile(FILE* file __attribute__((unused)))
27{
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.