aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-29 04:12:41 +0000
committerRichard M. Stallman1993-07-29 04:12:41 +0000
commit5cb70bb5ad9b9af694603241f218522172743070 (patch)
tree75e7982004a15d382352467bb31f0197992383fd /src
parent7447c37a373d39c31686862bd4726acf2db229f0 (diff)
downloademacs-5cb70bb5ad9b9af694603241f218522172743070.tar.gz
emacs-5cb70bb5ad9b9af694603241f218522172743070.zip
(bzero, bcmp, bcopy): New macros.
(LIB_STANDARD): Don't include libucb.a.
Diffstat (limited to 'src')
-rw-r--r--src/s/usg5-4.h14
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. */
35#define LIBS_SYSTEM -lsocket -lnsl -lelf 35#define LIBS_SYSTEM -lsocket -lnsl -lelf
36#define ORDINARY_LINK 36#define ORDINARY_LINK
37 37
38#if 0
38#ifdef ORDINARY_LINK 39#ifdef ORDINARY_LINK
39#define LIB_STANDARD -lc /usr/ucblib/libucb.a 40#define LIB_STANDARD -lc /usr/ucblib/libucb.a
40#else 41#else
41#define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xt.o 42#define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xt.o
42#define LIB_STANDARD -lc /usr/ucblib/libucb.a /usr/ccs/lib/crtn.o 43#define LIB_STANDARD -lc /usr/ucblib/libucb.a /usr/ccs/lib/crtn.o
43#endif 44#endif
45#else
46
47#ifdef ORDINARY_LINK
48#define LIB_STANDARD
49#else
50#define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xt.o
51#define LIB_STANDARD -lc /usr/ccs/lib/crtn.o
52#endif
53#endif
44 54
45/* there are no -lg libraries on this system, and no libPW */ 55/* there are no -lg libraries on this system, and no libPW */
46 56
@@ -185,3 +195,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
185/* This definition was suggested for next release. 195/* This definition was suggested for next release.
186 So give it a try. */ 196 So give it a try. */
187#define HAVE_SOCKETS 197#define HAVE_SOCKETS
198
199#define bcopy(src,dst,n) memcpy(dst,src,n)
200#define bcmp(src,dst,n) memcmp(src,dst,n)
201#define bzero(s,n) memset(s,0,n)