diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/isc3-0.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/s/isc3-0.h b/src/s/isc3-0.h index fe5d718bfc9..f46994e56ff 100644 --- a/src/s/isc3-0.h +++ b/src/s/isc3-0.h | |||
| @@ -22,3 +22,8 @@ | |||
| 22 | #undef LIB_X11_LIB | 22 | #undef LIB_X11_LIB |
| 23 | #undef LIBX11_SYSTEM | 23 | #undef LIBX11_SYSTEM |
| 24 | #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc | 24 | #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc |
| 25 | |||
| 26 | /* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't | ||
| 27 | find memmove, but that sounds crazy - I thought all SYSV | ||
| 28 | descendants had that. Let us know if this turns out to be wrong. */ | ||
| 29 | #define memmove(d, s, n) safe_bcopy ((s), (d), (n)) | ||