Files
mercury/runtime/ext_stdlib.h
Fergus Henderson bc8e2d6235 Remove ext_stdio.h, since it wasn't being used.
runtime/{Mmake, ext_stdio.h}
	Remove ext_stdio.h, since it wasn't being used.

runtime/memory.c:
	Remove declarations of popen() and pclose(), since they are not
	used.

runtime/conf.h.in:
	Remove #define for HAVE_CWD_DECL, since we don't use cwd().
1995-07-26 15:02:59 +00:00

19 lines
450 B
C

/*
** Copyright (C) 1995 University of Melbourne.
** This file may only be copied under the terms of the GNU Library General
** Public License - see the file COPYING.LIB in the Mercury distribution.
*/
#ifndef EXT_STDLIB_H
#define EXT_STDLIB_H
extern int getopt(int, char *const *, const char *);
extern char *optarg;
extern int optind, opterr, optopt;
#ifdef HAVE_MEMALIGN
extern void *memalign(size_t, size_t);
#endif
#endif /* EXT_STDLIB_H */