diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-29 04:12:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-29 04:12:41 +0000 |
commit | 5cb70bb5ad9b9af694603241f218522172743070 (patch) | |
tree | 75e7982004a15d382352467bb31f0197992383fd /src/s/usg5-4.h | |
parent | 7447c37a373d39c31686862bd4726acf2db229f0 (diff) | |
download | emacs-5cb70bb5ad9b9af694603241f218522172743070.tar.gz |
(bzero, bcmp, bcopy): New macros.
(LIB_STANDARD): Don't include libucb.a.
Diffstat (limited to 'src/s/usg5-4.h')
-rw-r--r-- | src/s/usg5-4.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 96ccecefcf0..f319ecd2d22 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -35,12 +35,22 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define LIBS_SYSTEM -lsocket -lnsl -lelf #define ORDINARY_LINK +#if 0 #ifdef ORDINARY_LINK #define LIB_STANDARD -lc /usr/ucblib/libucb.a #else #define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xt.o #define LIB_STANDARD -lc /usr/ucblib/libucb.a /usr/ccs/lib/crtn.o #endif +#else + +#ifdef ORDINARY_LINK +#define LIB_STANDARD +#else +#define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xt.o +#define LIB_STANDARD -lc /usr/ccs/lib/crtn.o +#endif +#endif /* there are no -lg libraries on this system, and no libPW */ @@ -185,3 +195,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* This definition was suggested for next release. So give it a try. */ #define HAVE_SOCKETS + +#define bcopy(src,dst,n) memcpy(dst,src,n) +#define bcmp(src,dst,n) memcmp(src,dst,n) +#define bzero(s,n) memset(s,0,n) |