Files
mercury/runtime/ext_stdlib.h
Zoltan Somogyi 19bcfcbab4 Now memory diagnostics are printed on stderr.
memory.c:
	Now memory diagnostics are printed on stderr.

wrapper.mod, memory.c:
	Convert whens to cases and ors to else ifs.

other files:
	copyright notices.
1995-05-29 02:04:10 +00:00

22 lines
513 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
#ifdef HAVE_CWD_DECL
#include <unistd.h>
#else
extern char *getcwd(char *, size_t);
#endif
extern int getopt(int, char *const *, const char *);
extern char *optarg;
extern int optind, opterr, optopt;
extern void *memalign(size_t, size_t);
#endif /* EXT_STDLIB_H */