diff options
Diffstat (limited to 'sys/compat/hpux/hpux_util.h')
-rw-r--r-- | sys/compat/hpux/hpux_util.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/compat/hpux/hpux_util.h b/sys/compat/hpux/hpux_util.h index bd59abddaac..319a2e57923 100644 --- a/sys/compat/hpux/hpux_util.h +++ b/sys/compat/hpux/hpux_util.h @@ -1,4 +1,4 @@ -/* $NetBSD: hpux_util.h,v 1.2 1995/06/24 20:17:57 christos Exp $ */ +/* $NetBSD: hpux_util.h,v 1.3 1995/12/08 07:45:34 thorpej Exp $ */ /* * Copyright (c) 1995 Christos Zoulas @@ -32,6 +32,14 @@ #include <compat/common/compat_util.h> +extern const char hpux_emul_path[]; + +#define HPUX_CHECK_ALT_EXIST(p, sgp, path) \ + CHECK_ALT_EXIST(p, sgp, hpux_emul_path, path) + +#define HPUX_CHECK_ALT_CREAT(p, sgp, path) \ + CHECK_ALT_CREAT(p, sgp, hpux_emul_path, path) + #ifdef DEBUG_HPUX #define DPRINTF(a) printf a; #else |