chiark / gitweb /
make-secnet-sites: Fix error handling if caller is in wrong group
[secnet.git] / osdep.h
1 /*
2  * osdep.c
3  * - portability routines
4  */
5 /*
6  * This file is part of secnet.
7  * See README for full list of copyright holders.
8  *
9  * secnet is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  * 
14  * secnet is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * version 3 along with secnet; if not, see
21  * https://www.gnu.org/licenses/gpl.html.
22  */
23
24 #ifndef osdep_h
25 #define osdep_h
26
27 #include "config.h"
28
29 #include <stdio.h>
30
31 #ifndef HAVE_FMEMOPEN
32 extern FILE *fmemopen(void *buf, size_t size, const char *mode);
33 #endif
34
35 #endif /* osdep_h */