source: rtems/cpukit/libcsupport/src/funlockfile.c @ c499856

4.115
Last change on this file since c499856 was cc390b62, checked in by Alex Ivanov <alexivanov97@…>, on 12/11/12 at 22:35:30

libcsupport: Doxygen enhancement GCI task #6

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

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