mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-23 21:33:49 +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.
21 lines
424 B
C
21 lines
424 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 GETOPT_H
|
|
#define GETOPT_H
|
|
|
|
#define GETOPTHUH '?'
|
|
#define GETOPTDONE (-1)
|
|
|
|
extern int getopt(int, char *const*, const char *);
|
|
|
|
extern char *optarg;
|
|
extern int opterr;
|
|
extern int optind;
|
|
extern int optopt;
|
|
|
|
#endif
|