mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-13 21:04:00 +00:00
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().
19 lines
450 B
C
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 */
|