From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- unix/f2c/src/niceprintf.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 unix/f2c/src/niceprintf.h (limited to 'unix/f2c/src/niceprintf.h') diff --git a/unix/f2c/src/niceprintf.h b/unix/f2c/src/niceprintf.h new file mode 100644 index 00000000..24c65d4d --- /dev/null +++ b/unix/f2c/src/niceprintf.h @@ -0,0 +1,16 @@ +/* niceprintf.h -- contains constants and macros from the output filter + for the generated C code. We use macros for increased speed, less + function overhead. */ + +#define MAX_OUTPUT_SIZE 6000 /* Number of chars on one output line PLUS + the length of the longest string + printed using nice_printf */ + + + +#define next_tab(fp) (indent += tab_size) + +#define prev_tab(fp) (indent -= tab_size) + + + -- cgit