annotate src/s/sol2.h @ 1447:75fa9ad982a5
(add-log-current-defun): Add condition-case around
the body, so at worst we return nil.
author |
Richard M. Stallman <rms@gnu.org> |
date |
Mon, 19 Oct 1992 22:39:55 +0000 |
parents |
7961d1af11a7 |
children |
fed9a9ee5156 |
rev |
line source |
1179
|
1 #include "s-usg5-4.h"
|
|
2
|
|
3 #define POSIX
|
|
4
|
|
5 /* Here is how to find X Windows. */
|
|
6 #define LD_SWITCH_SYSTEM -L/usr/openwin/lib
|
|
7 #define C_SWITCH_X_SYSTEM -I/usr/openwin/include
|
|
8
|
|
9 /* Compile in non-ansi fashion to work around bugs in system header files. */
|
|
10 #ifndef __GNUC__
|
|
11 #define C_SWITCH_SYSTEM -Xs
|
|
12 #else /* GCC */
|
|
13 #define C_SWITCH_SYSTEM -traditional
|
|
14 #endif /* GCC */
|