From c7989fe7c1cedb24403747ed35aa772f29e59fd0 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 1 May 2010 04:19:00 +0000 Subject: =?UTF-8?q?2010-05-01=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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). --- cpukit/libcsupport/src/funlockfile.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cpukit/libcsupport/src/funlockfile.c (limited to 'cpukit/libcsupport/src/funlockfile.c') diff --git a/cpukit/libcsupport/src/funlockfile.c b/cpukit/libcsupport/src/funlockfile.c new file mode 100644 index 0000000000..a9f1bf3a92 --- /dev/null +++ b/cpukit/libcsupport/src/funlockfile.c @@ -0,0 +1,22 @@ +/* + * 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 + +/* This is a non-functional stub */ +void funlockfile(FILE* file) +{ +} + +#endif -- cgit v1.2.3