17 lines
441 B
C
17 lines
441 B
C
/* $NetBSD: osf1_util.h,v 1.5 1999/04/23 18:01:05 cgd Exp $ */
|
|
|
|
#ifndef _COMPAT_OSF1_OSF1_UTIL_H_
|
|
#define _COMPAT_OSF1_OSF1_UTIL_H_
|
|
|
|
#include <compat/common/compat_util.h>
|
|
|
|
extern const char osf1_emul_path[];
|
|
|
|
#define OSF1_CHECK_ALT_EXIST(p, sgp, path) \
|
|
CHECK_ALT_EXIST(p, sgp, osf1_emul_path, path)
|
|
|
|
#define OSF1_CHECK_ALT_CREAT(p, sgp, path) \
|
|
CHECK_ALT_CREAT(p, sgp, osf1_emul_path, path)
|
|
|
|
#endif /* _COMPAT_OSF1_OSF1_UTIL_H_ */
|