summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/funlockfile.c
blob: 3c1efff7a6d246d31a5fd1eeb8102a3e9785e117 (plain) (tree)
1
2
3
4
5
6
7






                                











                                                                
                                                       


                  


                                 
                            
 
              


      
/**
 *  @file
 *
 *  @brief Unlock File for Stdio
 *  @ingroup libcsupport
 */

/*
 * 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.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#if defined(RTEMS_NEWLIB) && !defined(HAVE_FUNLOCKFILE)

#include <stdio.h>

/**
 * This is a non-functional stub 
 */
void funlockfile(FILE* file)
{
  (void) file;
}

#endif