forked from Imagelibrary/binutils-gdb
* remote-udi.c (udi_open): Change strdup to xstrdup.
* thread.c (thread_apply_all_command): Change strdup to xstrdup.
Update copyright message.
* varobj.c (delete_variable_1): Likewise.
* gdb_string.h: Remove declaration of strdup. Update copyright
message.
* config/xm-mpw.h: Likewise.
* config/i386/xm-i386mach.h: Likewise.
* config/m68k/xm-apollo68b.h: Likewise.
* config/m68k/xm-hp300bsd.h: Likewise.
* config/rs6000/xm-rs6000.h: Likewise.
* config/vax/xm-vaxult.h: Remove declaration of strdup.
* config/vax/xm-vaxult2.h: Likewise.
10 lines
311 B
C
10 lines
311 B
C
/* Definitions to make GDB run on a vax under Ultrix. */
|
|
|
|
#include "vax/xm-vax.h"
|
|
#define NO_PTRACE_H
|
|
|
|
/* Old versions of ultrix have fd_set but not the FD_* macros. */
|
|
|
|
#define FD_SET(bit,fdsetp) ((fdsetp)->fds_bits[(n) / 32] |= (1 << ((n) % 32)))
|
|
#define FD_ZERO(fdsetp) memset (fdsetp, 0, sizeof (*fdsetp))
|