1 /* Header portion of the se programs */
2 #define NOTFIXED -100
3 
4 #include <stdio.h>
5 #include <stdbool.h>
6 
7 typedef enum {Py_LT, Py_LE, Py_EQ, Py_NE, Py_GT, Py_GE,
8 } comparisons;
9 
10 #define fprintf ignore_fprintf
11 
fprintf(FILE * f,char * s,...)12 void fprintf(FILE *f, char *s, ...)
13 {
14     ;
15 }
16 
17 static bool fatal_error = false;
18 
Py_FatalError(char * ignored)19 void Py_FatalError(char *ignored)
20 {
21     fatal_error = true;
22 }
23