source: gsdl/trunk/trunk/mgpp/lib/non_ansi.h@ 16583

Last change on this file since 16583 was 16583, checked in by davidb, 16 years ago

Undoing change commited in r16582

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 439 bytes
Line 
1#if !defined(_NON_ANSI_H)
2#define _NON_ANSI_H 1
3
4#include "config.h"
5# if !defined(__STDC__)
6
7#include <stdlib.h> /* for FILE def */
8#if defined (__cplusplus)
9extern "C" {
10#endif
11
12int fileno(FILE *);
13int ftruncate(int, long);
14int pclose(FILE *);
15FILE *popen(const char *command, const char *type);
16int getpagesize();
17int strcasecmp(const char *, const char *);
18
19#if defined (__cplusplus)
20}
21#endif
22
23#endif /* !defined STDC, ... */
24#endif
Note: See TracBrowser for help on using the repository browser.