mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-14 05:12:33 +00:00
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.
18 lines
462 B
C
18 lines
462 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_STDIO_H
|
|
#define EXT_STDIO_H
|
|
|
|
extern FILE *popen(const char *, const char *);
|
|
extern char *cuserid(char *);
|
|
extern char *tempnam(const char *, const char *);
|
|
extern int getw(FILE *);
|
|
extern int putw(int, FILE *);
|
|
extern int pclose(FILE *);
|
|
|
|
#endif
|