Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:15

0001 /**
0002  *  @file
0003  *
0004  *  @brief Lock File for Stdio
0005  *  @ingroup SET
0006  */
0007 /*
0008  * Copyright (c) 2009 by
0009  * Ralf Corsépius, Ulm, Germany. All rights reserved.
0010  *
0011  * Permission to use, copy, modify, and distribute this software
0012  * is freely granted, provided that this notice is preserved.
0013  */
0014 
0015 #ifdef HAVE_CONFIG_H
0016 #include "config.h"
0017 #endif
0018 
0019 #if defined(RTEMS_NEWLIB) && !defined(HAVE_FLOCKFILE)
0020 
0021 #include <stdio.h>
0022 
0023 /**
0024  *  This is a non-functional stub 
0025  */
0026 void flockfile(FILE* file)
0027 {
0028   (void) file;
0029 }
0030 
0031 #endif