stand.h revision 329183
138451Smsmith/*
238451Smsmith * Copyright (c) 1998 Michael Smith.
338451Smsmith * All rights reserved.
438451Smsmith *
538451Smsmith * Redistribution and use in source and binary forms, with or without
638451Smsmith * modification, are permitted provided that the following conditions
738451Smsmith * are met:
838451Smsmith * 1. Redistributions of source code must retain the above copyright
938451Smsmith *    notice, this list of conditions and the following disclaimer.
1038451Smsmith * 2. Redistributions in binary form must reproduce the above copyright
1138451Smsmith *    notice, this list of conditions and the following disclaimer in the
1238451Smsmith *    documentation and/or other materials provided with the distribution.
1338451Smsmith *
1438451Smsmith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1538451Smsmith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1638451Smsmith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1738451Smsmith * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1838451Smsmith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1938451Smsmith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2038451Smsmith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2138451Smsmith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2238451Smsmith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2338451Smsmith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2438451Smsmith * SUCH DAMAGE.
2538451Smsmith *
2650476Speter * $FreeBSD: stable/11/stand/libsa/stand.h 329183 2018-02-12 20:51:28Z kevans $
2738451Smsmith * From	$NetBSD: stand.h,v 1.22 1997/06/26 19:17:40 drochner Exp $
2838451Smsmith */
2938451Smsmith
3038451Smsmith/*-
3138451Smsmith * Copyright (c) 1993
3238451Smsmith *	The Regents of the University of California.  All rights reserved.
3338451Smsmith *
3438451Smsmith * Redistribution and use in source and binary forms, with or without
3538451Smsmith * modification, are permitted provided that the following conditions
3638451Smsmith * are met:
3738451Smsmith * 1. Redistributions of source code must retain the above copyright
3838451Smsmith *    notice, this list of conditions and the following disclaimer.
3938451Smsmith * 2. Redistributions in binary form must reproduce the above copyright
4038451Smsmith *    notice, this list of conditions and the following disclaimer in the
4138451Smsmith *    documentation and/or other materials provided with the distribution.
4238451Smsmith * 4. Neither the name of the University nor the names of its contributors
4338451Smsmith *    may be used to endorse or promote products derived from this software
4438451Smsmith *    without specific prior written permission.
4538451Smsmith *
4638451Smsmith * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
4738451Smsmith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4838451Smsmith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4938451Smsmith * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
5038451Smsmith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5138451Smsmith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
5238451Smsmith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
5338451Smsmith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
5438451Smsmith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5538451Smsmith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5638451Smsmith * SUCH DAMAGE.
5738451Smsmith *
5838451Smsmith *	@(#)stand.h	8.1 (Berkeley) 6/11/93
5938451Smsmith */
6038451Smsmith
61146327Sobrien#ifndef	STAND_H
62146327Sobrien#define	STAND_H
63146327Sobrien
6438451Smsmith#include <sys/types.h>
6538451Smsmith#include <sys/cdefs.h>
6638451Smsmith#include <sys/stat.h>
6759766Sjlemon#include <sys/dirent.h>
68223905Savatar
69223905Savatar/* this header intentionally exports NULL from <string.h> */
7064185Sjhb#include <string.h>
71329183Skevans#define strcoll(a, b)	strcmp((a), (b))
7238451Smsmith
73135576Sstefanf#define CHK(fmt, args...)	printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
74135576Sstefanf#define PCHK(fmt, args...)	{printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
7539665Smsmith
7638451Smsmith#include <sys/errno.h>
7738451Smsmith
7838451Smsmith/* special stand error codes */
7938451Smsmith#define	EADAPT	(ELAST+1)	/* bad adaptor */
8038451Smsmith#define	ECTLR	(ELAST+2)	/* bad controller */
8138451Smsmith#define	EUNIT	(ELAST+3)	/* bad unit */
8238451Smsmith#define ESLICE	(ELAST+4)	/* bad slice */
8338451Smsmith#define	EPART	(ELAST+5)	/* bad partition */
8438451Smsmith#define	ERDLAB	(ELAST+6)	/* can't read disk label */
8538451Smsmith#define	EUNLAB	(ELAST+7)	/* unlabeled disk */
8638451Smsmith#define	EOFFSET	(ELAST+8)	/* relative seek not supported */
8738451Smsmith#define	ESALAST	(ELAST+8)	/* */
8838451Smsmith
89329175Skevans/* Partial signal emulation for sig_atomic_t */
90329175Skevans#include <machine/signal.h>
91329175Skevans
9238451Smsmithstruct open_file;
9338451Smsmith
9438451Smsmith/*
9538451Smsmith * This structure is used to define file system operations in a file system
9638451Smsmith * independent way.
9738451Smsmith *
9838451Smsmith * XXX note that filesystem providers should export a pointer to their fs_ops
9938451Smsmith *     struct, so that consumers can reference this and thus include the
10038451Smsmith *     filesystems that they require.
10138451Smsmith */
10238451Smsmithstruct fs_ops {
10339468Smsmith    const char	*fs_name;
10439468Smsmith    int		(*fo_open)(const char *path, struct open_file *f);
10538451Smsmith    int		(*fo_close)(struct open_file *f);
10638451Smsmith    int		(*fo_read)(struct open_file *f, void *buf,
10738451Smsmith			   size_t size, size_t *resid);
10838451Smsmith    int		(*fo_write)(struct open_file *f, void *buf,
10938451Smsmith			    size_t size, size_t *resid);
11038451Smsmith    off_t	(*fo_seek)(struct open_file *f, off_t offset, int where);
11138451Smsmith    int		(*fo_stat)(struct open_file *f, struct stat *sb);
11259766Sjlemon    int		(*fo_readdir)(struct open_file *f, struct dirent *d);
11338451Smsmith};
11438451Smsmith
11538451Smsmith/*
11638451Smsmith * libstand-supplied filesystems
11738451Smsmith */
11838451Smsmithextern struct fs_ops ufs_fsops;
11938451Smsmithextern struct fs_ops tftp_fsops;
12038451Smsmithextern struct fs_ops nfs_fsops;
12138451Smsmithextern struct fs_ops cd9660_fsops;
122235537Sgberextern struct fs_ops nandfs_fsops;
123108100Sjakeextern struct fs_ops gzipfs_fsops;
12483610Ssobomaxextern struct fs_ops bzipfs_fsops;
12538451Smsmithextern struct fs_ops dosfs_fsops;
12659766Sjlemonextern struct fs_ops ext2fs_fsops;
12792494Ssobomaxextern struct fs_ops splitfs_fsops;
128269361Smarcelextern struct fs_ops pkgfs_fsops;
12938451Smsmith
13038451Smsmith/* where values for lseek(2) */
13138451Smsmith#define	SEEK_SET	0	/* set file offset to offset */
13238451Smsmith#define	SEEK_CUR	1	/* set file offset to current plus offset */
13338451Smsmith#define	SEEK_END	2	/* set file offset to EOF plus offset */
13438451Smsmith
13538451Smsmith/*
13638451Smsmith * Device switch
13738451Smsmith */
13838451Smsmithstruct devsw {
13939468Smsmith    const char	dv_name[8];
14038451Smsmith    int		dv_type;		/* opaque type constant, arch-dependant */
14138451Smsmith    int		(*dv_init)(void);	/* early probe call */
142298230Sallanjude    int		(*dv_strategy)(void *devdata, int rw, daddr_t blk,
143313355Stsoome			size_t size, char *buf, size_t *rsize);
14438451Smsmith    int		(*dv_open)(struct open_file *f, ...);
14538451Smsmith    int		(*dv_close)(struct open_file *f);
14638451Smsmith    int		(*dv_ioctl)(struct open_file *f, u_long cmd, void *data);
147328889Skevans    int		(*dv_print)(int verbose);	/* print device information */
14864185Sjhb    void	(*dv_cleanup)(void);
14938451Smsmith};
15038451Smsmith
15159766Sjlemon/*
15259766Sjlemon * libstand-supplied device switch
15359766Sjlemon */
15459766Sjlemonextern struct devsw netdev;
15559766Sjlemon
15638451Smsmithextern int errno;
15738451Smsmith
158298230Sallanjude/*
159298230Sallanjude * Generic device specifier; architecture-dependent
160298230Sallanjude * versions may be larger, but should be allowed to
161298230Sallanjude * overlap.
162298230Sallanjude */
163298230Sallanjudestruct devdesc
164298230Sallanjude{
165298230Sallanjude    struct devsw	*d_dev;
166298230Sallanjude    int			d_type;
167298230Sallanjude#define DEVT_NONE	0
168298230Sallanjude#define DEVT_DISK	1
169298230Sallanjude#define DEVT_NET	2
170298230Sallanjude#define DEVT_CD		3
171298230Sallanjude#define DEVT_ZFS	4
172329099Skevans#define DEVT_FD		5
173298230Sallanjude    int			d_unit;
174298230Sallanjude    void		*d_opendata;
175298230Sallanjude};
176298230Sallanjude
17738451Smsmithstruct open_file {
17838451Smsmith    int			f_flags;	/* see F_* below */
17938451Smsmith    struct devsw	*f_dev;		/* pointer to device operations */
18038451Smsmith    void		*f_devdata;	/* device specific data */
18138451Smsmith    struct fs_ops	*f_ops;		/* pointer to file system operations */
18238451Smsmith    void		*f_fsdata;	/* file system specific data */
18365470Smsmith    off_t		f_offset;	/* current file offset */
18465470Smsmith    char		*f_rabuf;	/* readahead buffer pointer */
18565470Smsmith    size_t		f_ralen;	/* valid data in readahead buffer */
18665470Smsmith    off_t		f_raoffset;	/* consumer offset in readahead buffer */
18765470Smsmith#define SOPEN_RASIZE	512
18838451Smsmith};
18938451Smsmith
190192679Sdfr#define	SOPEN_MAX	64
19138451Smsmithextern struct open_file files[];
19238451Smsmith
19338451Smsmith/* f_flags values */
19438451Smsmith#define	F_READ		0x0001	/* file opened for reading */
19538451Smsmith#define	F_WRITE		0x0002	/* file opened for writing */
19638451Smsmith#define	F_RAW		0x0004	/* raw device open - no file system */
19738451Smsmith#define F_NODEV		0x0008	/* network open - no device */
198329100Skevans#define	F_MASK		0xFFFF
199329100Skevans/* Mode modifier for strategy() */
200329100Skevans#define	F_NORA		(0x01 << 16)	/* Disable Read-Ahead */
20138451Smsmith
20255181Speter#define isascii(c)	(((c) & ~0x7F) == 0)
20338451Smsmith
20476579Sdcsstatic __inline int isupper(int c)
20576579Sdcs{
20676579Sdcs    return c >= 'A' && c <= 'Z';
20776579Sdcs}
20876579Sdcs
20976579Sdcsstatic __inline int islower(int c)
21076579Sdcs{
21176579Sdcs    return c >= 'a' && c <= 'z';
21276579Sdcs}
21376579Sdcs
21476579Sdcsstatic __inline int isspace(int c)
21576579Sdcs{
21676579Sdcs    return c == ' ' || (c >= 0x9 && c <= 0xd);
21776579Sdcs}
21876579Sdcs
21976579Sdcsstatic __inline int isdigit(int c)
22076579Sdcs{
22176579Sdcs    return c >= '0' && c <= '9';
22276579Sdcs}
22376579Sdcs
22476579Sdcsstatic __inline int isxdigit(int c)
22576579Sdcs{
22676579Sdcs    return isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
22776579Sdcs}
22876579Sdcs
22976579Sdcsstatic __inline int isalpha(int c)
23076579Sdcs{
23176579Sdcs    return isupper(c) || islower(c);
23276579Sdcs}
23376579Sdcs
23476579Sdcsstatic __inline int isalnum(int c)
23576579Sdcs{
23676579Sdcs    return isalpha(c) || isdigit(c);
23776579Sdcs}
23876579Sdcs
239329175Skevansstatic __inline int iscntrl(int c)
240329175Skevans{
241329175Skevans	return (c >= 0 && c < ' ') || c == 127;
242329175Skevans}
243329175Skevans
244329175Skevansstatic __inline int isgraph(int c)
245329175Skevans{
246329175Skevans	return c >= '!' && c <= '~';
247329175Skevans}
248329175Skevans
249329175Skevansstatic __inline int ispunct(int c)
250329175Skevans{
251329175Skevans	return (c >= '!' && c <= '/') || (c >= ':' && c <= '@') ||
252329175Skevans	    (c >= '[' && c <= '`') || (c >= '{' && c <= '~');
253329175Skevans}
254329175Skevans
25551169Sdfrstatic __inline int toupper(int c)
25651169Sdfr{
25751169Sdfr    return islower(c) ? c - 'a' + 'A' : c;
25851169Sdfr}
25951169Sdfr
26051169Sdfrstatic __inline int tolower(int c)
26151169Sdfr{
26251169Sdfr    return isupper(c) ? c - 'A' + 'a' : c;
26351169Sdfr}
26451169Sdfr
26539665Smsmith/* sbrk emulation */
26639665Smsmithextern void	setheap(void *base, void *top);
26739665Smsmithextern char	*sbrk(int incr);
26838451Smsmith
26939665Smsmithextern void	*reallocf(void *ptr, size_t size);
27039665Smsmithextern void	mallocstats(void);
27139665Smsmith
272100392Speterextern int	printf(const char *fmt, ...) __printflike(1, 2);
273102227Smikeextern void	vprintf(const char *fmt, __va_list);
274100392Speterextern int	sprintf(char *buf, const char *cfmt, ...) __printflike(2, 3);
275266878Shselaskyextern int	snprintf(char *buf, size_t size, const char *cfmt, ...) __printflike(3, 4);
276102227Smikeextern void	vsprintf(char *buf, const char *cfmt, __va_list);
27738451Smsmith
278276079Sianextern void	twiddle(u_int callerdiv);
279276079Sianextern void	twiddle_divisor(u_int globaldiv);
28038451Smsmith
28138451Smsmithextern void	ngets(char *, int);
28238451Smsmith#define gets(x)	ngets((x), 0)
28338451Smsmithextern int	fgetstr(char *buf, int size, int fd);
28438451Smsmith
28538451Smsmithextern int	open(const char *, int);
28638451Smsmith#define	O_RDONLY	0x0
28787632Sjhb#define O_WRONLY	0x1
28838451Smsmith#define O_RDWR		0x2
28938451Smsmithextern int	close(int);
29038451Smsmithextern void	closeall(void);
29138451Smsmithextern ssize_t	read(int, void *, size_t);
29238451Smsmithextern ssize_t	write(int, void *, size_t);
29359766Sjlemonextern struct	dirent *readdirfd(int);
29438451Smsmith
29538451Smsmithextern void	srandom(u_long seed);
296329114Skevansextern long	random(void);
29738451Smsmith
29838451Smsmith/* imports from stdlib, locally modified */
29938451Smsmithextern char	*optarg;			/* getopt(3) external variables */
30042511Smsmithextern int	optind, opterr, optopt, optreset;
30138451Smsmithextern int	getopt(int, char * const [], const char *);
30238451Smsmith
30338451Smsmith/* pager.c */
30438451Smsmithextern void	pager_open(void);
30538451Smsmithextern void	pager_close(void);
30638451Smsmithextern int	pager_output(const char *lines);
30739468Smsmithextern int	pager_file(const char *fname);
30838451Smsmith
30940891Smsmith/* No signal state to preserve */
31040891Smsmith#define setjmp	_setjmp
31140891Smsmith#define longjmp	_longjmp
31240891Smsmith
31338451Smsmith/* environment.c */
31438451Smsmith#define EV_DYNAMIC	(1<<0)		/* value was dynamically allocated, free if changed/unset */
31538451Smsmith#define EV_VOLATILE	(1<<1)		/* value is volatile, make a copy of it */
31638451Smsmith#define EV_NOHOOK	(1<<2)		/* don't call hook when setting */
31738451Smsmith
31838451Smsmithstruct env_var;
31938451Smsmithtypedef char	*(ev_format_t)(struct env_var *ev);
320121532Spetertypedef int	(ev_sethook_t)(struct env_var *ev, int flags,
321121532Speter		    const void *value);
32238451Smsmithtypedef int	(ev_unsethook_t)(struct env_var *ev);
32338451Smsmith
32438451Smsmithstruct env_var
32538451Smsmith{
32638451Smsmith    char		*ev_name;
32738451Smsmith    int			ev_flags;
32838451Smsmith    void		*ev_value;
32938451Smsmith    ev_sethook_t	*ev_sethook;
33038451Smsmith    ev_unsethook_t	*ev_unsethook;
33138451Smsmith    struct env_var	*ev_next, *ev_prev;
33238451Smsmith};
33338451Smsmithextern struct env_var	*environ;
33438451Smsmith
33538451Smsmithextern struct env_var	*env_getenv(const char *name);
33664185Sjhbextern int		env_setenv(const char *name, int flags,
33764185Sjhb				   const void *value, ev_sethook_t sethook,
33864185Sjhb				   ev_unsethook_t unsethook);
33938451Smsmithextern char		*getenv(const char *name);
34064185Sjhbextern int		setenv(const char *name, const char *value,
34164185Sjhb			       int overwrite);
342329114Skevansextern int		putenv(char *string);
34338451Smsmithextern int		unsetenv(const char *name);
34438451Smsmith
34538451Smsmithextern ev_sethook_t	env_noset;		/* refuse set operation */
34638451Smsmithextern ev_unsethook_t	env_nounset;		/* refuse unset operation */
34738451Smsmith
348329175Skevans/* stdlib.h routines */
349329175Skevansextern int		abs(int a);
350329175Skevansextern void		abort(void) __dead2;
351329175Skevansextern long		strtol(const char * __restrict, char ** __restrict, int);
352329175Skevansextern long long	strtoll(const char * __restrict, char ** __restrict, int);
353329175Skevansextern unsigned long	strtoul(const char * __restrict, char ** __restrict, int);
354329175Skevansextern unsigned long long strtoull(const char * __restrict, char ** __restrict, int);
355329175Skevans
35638451Smsmith/* BCD conversions (undocumented) */
35738451Smsmithextern u_char const	bcd2bin_data[];
35838451Smsmithextern u_char const	bin2bcd_data[];
35938451Smsmithextern char const	hex2ascii_data[];
36038451Smsmith
36138451Smsmith#define	bcd2bin(bcd)	(bcd2bin_data[bcd])
36238451Smsmith#define	bin2bcd(bin)	(bin2bcd_data[bin])
36338451Smsmith#define	hex2ascii(hex)	(hex2ascii_data[hex])
364329175Skevans#define	validbcd(bcd)	(bcd == 0 || (bcd > 0 && bcd <= 0x99 && bcd2bin_data[bcd] != 0))
36538451Smsmith
36638451Smsmith/* min/max (undocumented) */
36738451Smsmithstatic __inline int imax(int a, int b) { return (a > b ? a : b); }
36838451Smsmithstatic __inline int imin(int a, int b) { return (a < b ? a : b); }
36938451Smsmithstatic __inline long lmax(long a, long b) { return (a > b ? a : b); }
37038451Smsmithstatic __inline long lmin(long a, long b) { return (a < b ? a : b); }
37138451Smsmithstatic __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
37238451Smsmithstatic __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
37338451Smsmithstatic __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); }
37438451Smsmithstatic __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
37538451Smsmithstatic __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
37638451Smsmithstatic __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
37738451Smsmith
37838451Smsmith/* null functions for device/filesystem switches (undocumented) */
37938451Smsmithextern int	nodev(void);
38038451Smsmithextern int	noioctl(struct open_file *, u_long, void *);
38138451Smsmithextern void	nullsys(void);
38238451Smsmith
38339468Smsmithextern int	null_open(const char *path, struct open_file *f);
38438451Smsmithextern int	null_close(struct open_file *f);
38555137Speterextern int	null_read(struct open_file *f, void *buf, size_t size, size_t *resid);
38655137Speterextern int	null_write(struct open_file *f, void *buf, size_t size, size_t *resid);
38738451Smsmithextern off_t	null_seek(struct open_file *f, off_t offset, int where);
38838451Smsmithextern int	null_stat(struct open_file *f, struct stat *sb);
38959766Sjlemonextern int	null_readdir(struct open_file *f, struct dirent *d);
39038451Smsmith
39159766Sjlemon
39238451Smsmith/*
39338451Smsmith * Machine dependent functions and data, must be provided or stubbed by
39438451Smsmith * the consumer
39538451Smsmith */
396329175Skevansextern void		exit(int) __dead2;
39738451Smsmithextern int		getchar(void);
39838451Smsmithextern int		ischar(void);
39938451Smsmithextern void		putchar(int);
40039672Sdfrextern int		devopen(struct open_file *, const char *, const char **);
40138451Smsmithextern int		devclose(struct open_file *f);
402124570Sjhbextern void		panic(const char *, ...) __dead2 __printflike(1, 2);
403329175Skevansextern void		panic_action(void) __weak_symbol __dead2;
404329175Skevansextern time_t		getsecs(void);
40538451Smsmithextern struct fs_ops	*file_system[];
406269308Smarcelextern struct fs_ops	*exclusive_file_system;
40738451Smsmithextern struct devsw	*devsw[];
40838451Smsmith
40990868Smike/*
41090868Smike * Expose byteorder(3) functions.
41190868Smike */
41291959Smike#ifndef _BYTEORDER_PROTOTYPED
41391959Smike#define	_BYTEORDER_PROTOTYPED
41491959Smikeextern uint32_t		htonl(uint32_t);
41591959Smikeextern uint16_t		htons(uint16_t);
41691959Smikeextern uint32_t		ntohl(uint32_t);
41791959Smikeextern uint16_t		ntohs(uint16_t);
41891959Smike#endif
41991959Smike
42091959Smike#ifndef _BYTEORDER_FUNC_DEFINED
42191959Smike#define	_BYTEORDER_FUNC_DEFINED
42290868Smike#define	htonl(x)	__htonl(x)
42390868Smike#define	htons(x)	__htons(x)
42490868Smike#define	ntohl(x)	__ntohl(x)
42590868Smike#define	ntohs(x)	__ntohs(x)
42691959Smike#endif
42790868Smike
428100394Spetervoid *Malloc(size_t, const char *, int);
429100394Spetervoid *Calloc(size_t, size_t, const char *, int);
430100394Spetervoid *Realloc(void *, size_t, const char *, int);
431100394Spetervoid Free(void *, const char *, int);
43239672Sdfr
433329175Skevans#ifdef DEBUG_MALLOC
434100394Speter#define malloc(x)	Malloc(x, __FILE__, __LINE__)
435100394Speter#define calloc(x, y)	Calloc(x, y, __FILE__, __LINE__)
436100394Speter#define free(x)		Free(x, __FILE__, __LINE__)
437100394Speter#define realloc(x, y)	Realloc(x, y, __FILE__, __LINE__)
438100394Speter#else
439102216Sscottl#define malloc(x)	Malloc(x, NULL, 0)
440100394Speter#define calloc(x, y)	Calloc(x, y, NULL, 0)
441100394Speter#define free(x)		Free(x, NULL, 0)
442100394Speter#define realloc(x, y)	Realloc(x, y, NULL, 0)
44339672Sdfr#endif
444146327Sobrien
445146327Sobrien#endif	/* STAND_H */
446