summaryrefslogtreecommitdiff
path: root/src/3rdparty/proj/emess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/proj/emess.h')
-rw-r--r--src/3rdparty/proj/emess.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/3rdparty/proj/emess.h b/src/3rdparty/proj/emess.h
deleted file mode 100644
index 6724a065..00000000
--- a/src/3rdparty/proj/emess.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Error message processing header file */
-#ifndef EMESS_H
-#define EMESS_H
-
-#ifndef lint
-static char EMESS_H_ID[] = "@(#)emess.h 4.1 93/03/08 GIE REL";
-#endif
-
-struct EMESS {
- char *File_name, /* input file name */
- *Prog_name; /* name of program */
- int File_line; /* approximate line read
- where error occured */
-};
-
-#ifdef EMESS_ROUTINE /* use type */
-/* for emess procedure */
-struct EMESS emess_dat = { (char *)0, (char *)0, 0 };
-
-#ifdef sun /* Archaic SunOs 4.1.1, etc. */
-extern char *sys_errlist[];
-#define strerror(n) (sys_errlist[n])
-#endif
-
-#else /* for for calling procedures */
-
-extern struct EMESS emess_dat;
-void emess(int, char *, ...);
-
-#endif /* use type */
-
-#endif /* end EMESS_H */