Deleted Added
full compact
awk.h (85587) awk.h (107806)
1/****************************************************************
2Copyright (C) Lucent Technologies 1997
3All Rights Reserved
4
5Permission to use, copy, modify, and distribute this software and
6its documentation for any purpose and without fee is hereby
7granted, provided that the above copyright notice appear in all
8copies and that both that the copyright notice and this

--- 16 unchanged lines hidden (view full) ---

25typedef double Awkfloat;
26
27/* unsigned char is more trouble than it's worth */
28
29typedef unsigned char uschar;
30
31#define xfree(a) { if ((a) != NULL) { free((char *) a); a = NULL; } }
32
1/****************************************************************
2Copyright (C) Lucent Technologies 1997
3All Rights Reserved
4
5Permission to use, copy, modify, and distribute this software and
6its documentation for any purpose and without fee is hereby
7granted, provided that the above copyright notice appear in all
8copies and that both that the copyright notice and this

--- 16 unchanged lines hidden (view full) ---

25typedef double Awkfloat;
26
27/* unsigned char is more trouble than it's worth */
28
29typedef unsigned char uschar;
30
31#define xfree(a) { if ((a) != NULL) { free((char *) a); a = NULL; } }
32
33#define NN(p) ((p) ? (p) : "(null)") /* guaranteed non-null for dprintf
34*/
33#define DEBUG
34#ifdef DEBUG
35 /* uses have to be doubly parenthesized */
36# define dprintf(x) if (dbg) printf x
37#else
38# define dprintf(x)
39#endif
40

--- 191 unchanged lines hidden ---
35#define DEBUG
36#ifdef DEBUG
37 /* uses have to be doubly parenthesized */
38# define dprintf(x) if (dbg) printf x
39#else
40# define dprintf(x)
41#endif
42

--- 191 unchanged lines hidden ---