Deleted Added
sdiff udiff text old ( 49267 ) new ( 49770 )
full compact
1/*
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1994 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $Id$
29 */
30
31#ifndef _SVR4_UTIL_H_
32#define _SVR4_UTIL_H_
33
34/*#include <compat/common/compat_util.h>*/
35#include <vm/vm.h>
36#include <vm/vm_param.h>

--- 29 unchanged lines hidden (view full) ---

66 *sgp += ALIGN(sz);
67 return p;
68}
69
70extern const char svr4_emul_path[];
71int svr4_emul_find __P((struct proc *, caddr_t *, const char *, char *,
72 char **, int));
73
74#define CHECKALTEXIST(p, sgp, path) \
75 svr4_emul_find(p, sgp, svr4_emul_path, path, &(path), 0)
76
77#define CHECKALTCREAT(p, sgp, path) \
78 svr4_emul_find(p, sgp, svr4_emul_path, path, &(path), 1)
79
80#endif /* !_SVR4_UTIL_H_ */