mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-26 10:58:49 +08:00
* 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).
23 lines
452 B
C
23 lines
452 B
C
/*
|
|
* 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) && defined(HAVE_DECL_FUNLOCKFILE)
|
|
|
|
#include <stdio.h>
|
|
|
|
/* This is a non-functional stub */
|
|
void funlockfile(FILE* file)
|
|
{
|
|
}
|
|
|
|
#endif
|