diff options
author | 1997-05-05 13:14:18 +0000 | |
---|---|---|
committer | 1997-05-05 13:14:18 +0000 | |
commit | 009e2c01aefb4d9b7c8f6fad0448391ced94c91b (patch) | |
tree | 8edfa74e292e3266602f1edaa603eba9031b1289 | |
parent | first shot of the notes for the pmax (diff) | |
download | wireguard-openbsd-009e2c01aefb4d9b7c8f6fad0448391ced94c91b.tar.xz wireguard-openbsd-009e2c01aefb4d9b7c8f6fad0448391ced94c91b.zip |
#define away local versions of atoi & strchr to prevent potential
name clashes with libkern versions
-rw-r--r-- | sys/scsi/ss_scanjet.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/ss_scanjet.c b/sys/scsi/ss_scanjet.c index 21c9850f310..f4b2937c487 100644 --- a/sys/scsi/ss_scanjet.c +++ b/sys/scsi/ss_scanjet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ss_scanjet.c,v 1.18 1997/03/11 12:06:49 kstailey Exp $ */ +/* $OpenBSD: ss_scanjet.c,v 1.19 1997/05/05 13:14:18 niklas Exp $ */ /* $NetBSD: ss_scanjet.c,v 1.6 1996/05/18 22:58:01 christos Exp $ */ /* @@ -65,6 +65,8 @@ int scanjet_ctl_read __P((struct ss_softc *, char *, u_int, int)); int scanjet_set_window __P((struct ss_softc *, int)); int scanjet_compute_sizes __P((struct ss_softc *, int)); /* Maybe move to libkern? */ +#define atoi local_atoi +#define strchr local_strchr __inline static int atoi __P((const char *)); __inline static char *strchr __P((/* const */ char *, char)); |