stand.h revision 313355
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/lib/libstand/stand.h 313355 2017-02-06 22:03:07Z tsoome $
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>
7138451Smsmith
72135576Sstefanf#define CHK(fmt, args...)	printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
73135576Sstefanf#define PCHK(fmt, args...)	{printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
7439665Smsmith
7538451Smsmith/* Avoid unwanted userlandish components */
7655206Speter#define _KERNEL
7738451Smsmith#include <sys/errno.h>
7855206Speter#undef _KERNEL
7938451Smsmith
8038451Smsmith/* special stand error codes */
8138451Smsmith#define	EADAPT	(ELAST+1)	/* bad adaptor */
8238451Smsmith#define	ECTLR	(ELAST+2)	/* bad controller */
8338451Smsmith#define	EUNIT	(ELAST+3)	/* bad unit */
8438451Smsmith#define ESLICE	(ELAST+4)	/* bad slice */
8538451Smsmith#define	EPART	(ELAST+5)	/* bad partition */
8638451Smsmith#define	ERDLAB	(ELAST+6)	/* can't read disk label */
8738451Smsmith#define	EUNLAB	(ELAST+7)	/* unlabeled disk */
8838451Smsmith#define	EOFFSET	(ELAST+8)	/* relative seek not supported */
8938451Smsmith#define	ESALAST	(ELAST+8)	/* */
9038451Smsmith
9138451Smsmithstruct open_file;
9238451Smsmith
9338451Smsmith/*
9438451Smsmith * This structure is used to define file system operations in a file system
9538451Smsmith * independent way.
9638451Smsmith *
9738451Smsmith * XXX note that filesystem providers should export a pointer to their fs_ops
9838451Smsmith *     struct, so that consumers can reference this and thus include the
9938451Smsmith *     filesystems that they require.
10038451Smsmith */
10138451Smsmithstruct fs_ops {
10239468Smsmith    const char	*fs_name;
10339468Smsmith    int		(*fo_open)(const char *path, struct open_file *f);
10438451Smsmith    int		(*fo_close)(struct open_file *f);
10538451Smsmith    int		(*fo_read)(struct open_file *f, void *buf,
10638451Smsmith			   size_t size, size_t *resid);
10738451Smsmith    int		(*fo_write)(struct open_file *f, void *buf,
10838451Smsmith			    size_t size, size_t *resid);
10938451Smsmith    off_t	(*fo_seek)(struct open_file *f, off_t offset, int where);
11038451Smsmith    int		(*fo_stat)(struct open_file *f, struct stat *sb);
11159766Sjlemon    int		(*fo_readdir)(struct open_file *f, struct dirent *d);
11238451Smsmith};
11338451Smsmith
11438451Smsmith/*
11538451Smsmith * libstand-supplied filesystems
11638451Smsmith */
11738451Smsmithextern struct fs_ops ufs_fsops;
11838451Smsmithextern struct fs_ops tftp_fsops;
11938451Smsmithextern struct fs_ops nfs_fsops;
12038451Smsmithextern struct fs_ops cd9660_fsops;
121235537Sgberextern struct fs_ops nandfs_fsops;
122108100Sjakeextern struct fs_ops gzipfs_fsops;
12383610Ssobomaxextern struct fs_ops bzipfs_fsops;
12438451Smsmithextern struct fs_ops dosfs_fsops;
12559766Sjlemonextern struct fs_ops ext2fs_fsops;
12692494Ssobomaxextern struct fs_ops splitfs_fsops;
127269361Smarcelextern struct fs_ops pkgfs_fsops;
12838451Smsmith
12938451Smsmith/* where values for lseek(2) */
13038451Smsmith#define	SEEK_SET	0	/* set file offset to offset */
13138451Smsmith#define	SEEK_CUR	1	/* set file offset to current plus offset */
13238451Smsmith#define	SEEK_END	2	/* set file offset to EOF plus offset */
13338451Smsmith
13438451Smsmith/*
13538451Smsmith * Device switch
13638451Smsmith */
13738451Smsmithstruct devsw {
13839468Smsmith    const char	dv_name[8];
13938451Smsmith    int		dv_type;		/* opaque type constant, arch-dependant */
14038451Smsmith    int		(*dv_init)(void);	/* early probe call */
141298230Sallanjude    int		(*dv_strategy)(void *devdata, int rw, daddr_t blk,
142313355Stsoome			size_t size, char *buf, size_t *rsize);
14338451Smsmith    int		(*dv_open)(struct open_file *f, ...);
14438451Smsmith    int		(*dv_close)(struct open_file *f);
14538451Smsmith    int		(*dv_ioctl)(struct open_file *f, u_long cmd, void *data);
14640774Smsmith    void	(*dv_print)(int verbose);	/* print device information */
14764185Sjhb    void	(*dv_cleanup)(void);
14838451Smsmith};
14938451Smsmith
15059766Sjlemon/*
15159766Sjlemon * libstand-supplied device switch
15259766Sjlemon */
15359766Sjlemonextern struct devsw netdev;
15459766Sjlemon
15538451Smsmithextern int errno;
15638451Smsmith
157298230Sallanjude/*
158298230Sallanjude * Generic device specifier; architecture-dependent
159298230Sallanjude * versions may be larger, but should be allowed to
160298230Sallanjude * overlap.
161298230Sallanjude */
162298230Sallanjudestruct devdesc
163298230Sallanjude{
164298230Sallanjude    struct devsw	*d_dev;
165298230Sallanjude    int			d_type;
166298230Sallanjude#define DEVT_NONE	0
167298230Sallanjude#define DEVT_DISK	1
168298230Sallanjude#define DEVT_NET	2
169298230Sallanjude#define DEVT_CD		3
170298230Sallanjude#define DEVT_ZFS	4
171298230Sallanjude    int			d_unit;
172298230Sallanjude    void		*d_opendata;
173298230Sallanjude};
174298230Sallanjude
17538451Smsmithstruct open_file {
17638451Smsmith    int			f_flags;	/* see F_* below */
17738451Smsmith    struct devsw	*f_dev;		/* pointer to device operations */
17838451Smsmith    void		*f_devdata;	/* device specific data */
17938451Smsmith    struct fs_ops	*f_ops;		/* pointer to file system operations */
18038451Smsmith    void		*f_fsdata;	/* file system specific data */
18165470Smsmith    off_t		f_offset;	/* current file offset */
18265470Smsmith    char		*f_rabuf;	/* readahead buffer pointer */
18365470Smsmith    size_t		f_ralen;	/* valid data in readahead buffer */
18465470Smsmith    off_t		f_raoffset;	/* consumer offset in readahead buffer */
18565470Smsmith#define SOPEN_RASIZE	512
18638451Smsmith};
18738451Smsmith
188192679Sdfr#define	SOPEN_MAX	64
18938451Smsmithextern struct open_file files[];
19038451Smsmith
19138451Smsmith/* f_flags values */
19238451Smsmith#define	F_READ		0x0001	/* file opened for reading */
19338451Smsmith#define	F_WRITE		0x0002	/* file opened for writing */
19438451Smsmith#define	F_RAW		0x0004	/* raw device open - no file system */
19538451Smsmith#define F_NODEV		0x0008	/* network open - no device */
19638451Smsmith
19755181Speter#define isascii(c)	(((c) & ~0x7F) == 0)
19838451Smsmith
19976579Sdcsstatic __inline int isupper(int c)
20076579Sdcs{
20176579Sdcs    return c >= 'A' && c <= 'Z';
20276579Sdcs}
20376579Sdcs
20476579Sdcsstatic __inline int islower(int c)
20576579Sdcs{
20676579Sdcs    return c >= 'a' && c <= 'z';
20776579Sdcs}
20876579Sdcs
20976579Sdcsstatic __inline int isspace(int c)
21076579Sdcs{
21176579Sdcs    return c == ' ' || (c >= 0x9 && c <= 0xd);
21276579Sdcs}
21376579Sdcs
21476579Sdcsstatic __inline int isdigit(int c)
21576579Sdcs{
21676579Sdcs    return c >= '0' && c <= '9';
21776579Sdcs}
21876579Sdcs
21976579Sdcsstatic __inline int isxdigit(int c)
22076579Sdcs{
22176579Sdcs    return isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
22276579Sdcs}
22376579Sdcs
22476579Sdcsstatic __inline int isalpha(int c)
22576579Sdcs{
22676579Sdcs    return isupper(c) || islower(c);
22776579Sdcs}
22876579Sdcs
22976579Sdcsstatic __inline int isalnum(int c)
23076579Sdcs{
23176579Sdcs    return isalpha(c) || isdigit(c);
23276579Sdcs}
23376579Sdcs
23451169Sdfrstatic __inline int toupper(int c)
23551169Sdfr{
23651169Sdfr    return islower(c) ? c - 'a' + 'A' : c;
23751169Sdfr}
23851169Sdfr
23951169Sdfrstatic __inline int tolower(int c)
24051169Sdfr{
24151169Sdfr    return isupper(c) ? c - 'A' + 'a' : c;
24251169Sdfr}
24351169Sdfr
24439665Smsmith/* sbrk emulation */
24539665Smsmithextern void	setheap(void *base, void *top);
24639665Smsmithextern char	*sbrk(int incr);
24738451Smsmith
24839665Smsmith/* Matt Dillon's zalloc/zmalloc */
24939665Smsmithextern void	*malloc(size_t bytes);
25039665Smsmithextern void	free(void *ptr);
25139665Smsmith/*#define free(p)	{CHK("free %p", p); free(p);} */ /* use for catching guard violations */
25239665Smsmithextern void	*calloc(size_t n1, size_t n2);
25339665Smsmithextern void	*realloc(void *ptr, size_t size);
25439665Smsmithextern void	*reallocf(void *ptr, size_t size);
25539665Smsmithextern void	mallocstats(void);
25639665Smsmith
257100392Speterextern int	printf(const char *fmt, ...) __printflike(1, 2);
258102227Smikeextern void	vprintf(const char *fmt, __va_list);
259100392Speterextern int	sprintf(char *buf, const char *cfmt, ...) __printflike(2, 3);
260266878Shselaskyextern int	snprintf(char *buf, size_t size, const char *cfmt, ...) __printflike(3, 4);
261102227Smikeextern void	vsprintf(char *buf, const char *cfmt, __va_list);
26238451Smsmith
263276079Sianextern void	twiddle(u_int callerdiv);
264276079Sianextern void	twiddle_divisor(u_int globaldiv);
26538451Smsmith
26638451Smsmithextern void	ngets(char *, int);
26738451Smsmith#define gets(x)	ngets((x), 0)
26838451Smsmithextern int	fgetstr(char *buf, int size, int fd);
26938451Smsmith
27038451Smsmithextern int	open(const char *, int);
27138451Smsmith#define	O_RDONLY	0x0
27287632Sjhb#define O_WRONLY	0x1
27338451Smsmith#define O_RDWR		0x2
27438451Smsmithextern int	close(int);
27538451Smsmithextern void	closeall(void);
27638451Smsmithextern ssize_t	read(int, void *, size_t);
27738451Smsmithextern ssize_t	write(int, void *, size_t);
27859766Sjlemonextern struct	dirent *readdirfd(int);
27938451Smsmith
28038451Smsmithextern void	srandom(u_long seed);
28138451Smsmithextern u_long	random(void);
28238451Smsmith
28338451Smsmith/* imports from stdlib, locally modified */
28438451Smsmithextern long	strtol(const char *, char **, int);
285246931Skientzleextern unsigned long	strtoul(const char *, char **, int);
28638451Smsmithextern char	*optarg;			/* getopt(3) external variables */
28742511Smsmithextern int	optind, opterr, optopt, optreset;
28838451Smsmithextern int	getopt(int, char * const [], const char *);
28938451Smsmith
29038451Smsmith/* pager.c */
29138451Smsmithextern void	pager_open(void);
29238451Smsmithextern void	pager_close(void);
29338451Smsmithextern int	pager_output(const char *lines);
29439468Smsmithextern int	pager_file(const char *fname);
29538451Smsmith
29640891Smsmith/* No signal state to preserve */
29740891Smsmith#define setjmp	_setjmp
29840891Smsmith#define longjmp	_longjmp
29940891Smsmith
30038451Smsmith/* environment.c */
30138451Smsmith#define EV_DYNAMIC	(1<<0)		/* value was dynamically allocated, free if changed/unset */
30238451Smsmith#define EV_VOLATILE	(1<<1)		/* value is volatile, make a copy of it */
30338451Smsmith#define EV_NOHOOK	(1<<2)		/* don't call hook when setting */
30438451Smsmith
30538451Smsmithstruct env_var;
30638451Smsmithtypedef char	*(ev_format_t)(struct env_var *ev);
307121532Spetertypedef int	(ev_sethook_t)(struct env_var *ev, int flags,
308121532Speter		    const void *value);
30938451Smsmithtypedef int	(ev_unsethook_t)(struct env_var *ev);
31038451Smsmith
31138451Smsmithstruct env_var
31238451Smsmith{
31338451Smsmith    char		*ev_name;
31438451Smsmith    int			ev_flags;
31538451Smsmith    void		*ev_value;
31638451Smsmith    ev_sethook_t	*ev_sethook;
31738451Smsmith    ev_unsethook_t	*ev_unsethook;
31838451Smsmith    struct env_var	*ev_next, *ev_prev;
31938451Smsmith};
32038451Smsmithextern struct env_var	*environ;
32138451Smsmith
32238451Smsmithextern struct env_var	*env_getenv(const char *name);
32364185Sjhbextern int		env_setenv(const char *name, int flags,
32464185Sjhb				   const void *value, ev_sethook_t sethook,
32564185Sjhb				   ev_unsethook_t unsethook);
32638451Smsmithextern char		*getenv(const char *name);
32764185Sjhbextern int		setenv(const char *name, const char *value,
32864185Sjhb			       int overwrite);
32938451Smsmithextern int		putenv(const char *string);
33038451Smsmithextern int		unsetenv(const char *name);
33138451Smsmith
33238451Smsmithextern ev_sethook_t	env_noset;		/* refuse set operation */
33338451Smsmithextern ev_unsethook_t	env_nounset;		/* refuse unset operation */
33438451Smsmith
33538451Smsmith/* BCD conversions (undocumented) */
33638451Smsmithextern u_char const	bcd2bin_data[];
33738451Smsmithextern u_char const	bin2bcd_data[];
33838451Smsmithextern char const	hex2ascii_data[];
33938451Smsmith
34038451Smsmith#define	bcd2bin(bcd)	(bcd2bin_data[bcd])
34138451Smsmith#define	bin2bcd(bin)	(bin2bcd_data[bin])
34238451Smsmith#define	hex2ascii(hex)	(hex2ascii_data[hex])
34338451Smsmith
34438451Smsmith/* min/max (undocumented) */
34538451Smsmithstatic __inline int imax(int a, int b) { return (a > b ? a : b); }
34638451Smsmithstatic __inline int imin(int a, int b) { return (a < b ? a : b); }
34738451Smsmithstatic __inline long lmax(long a, long b) { return (a > b ? a : b); }
34838451Smsmithstatic __inline long lmin(long a, long b) { return (a < b ? a : b); }
34938451Smsmithstatic __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
35038451Smsmithstatic __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
35138451Smsmithstatic __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); }
35238451Smsmithstatic __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
35338451Smsmithstatic __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
35438451Smsmithstatic __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
35538451Smsmith
35638451Smsmith
35738451Smsmith/* null functions for device/filesystem switches (undocumented) */
35838451Smsmithextern int	nodev(void);
35938451Smsmithextern int	noioctl(struct open_file *, u_long, void *);
36038451Smsmithextern void	nullsys(void);
36138451Smsmith
36239468Smsmithextern int	null_open(const char *path, struct open_file *f);
36338451Smsmithextern int	null_close(struct open_file *f);
36455137Speterextern int	null_read(struct open_file *f, void *buf, size_t size, size_t *resid);
36555137Speterextern int	null_write(struct open_file *f, void *buf, size_t size, size_t *resid);
36638451Smsmithextern off_t	null_seek(struct open_file *f, off_t offset, int where);
36738451Smsmithextern int	null_stat(struct open_file *f, struct stat *sb);
36859766Sjlemonextern int	null_readdir(struct open_file *f, struct dirent *d);
36938451Smsmith
37059766Sjlemon
37138451Smsmith/*
37238451Smsmith * Machine dependent functions and data, must be provided or stubbed by
37338451Smsmith * the consumer
37438451Smsmith */
37538451Smsmithextern int		getchar(void);
37638451Smsmithextern int		ischar(void);
37738451Smsmithextern void		putchar(int);
37839672Sdfrextern int		devopen(struct open_file *, const char *, const char **);
37938451Smsmithextern int		devclose(struct open_file *f);
380124570Sjhbextern void		panic(const char *, ...) __dead2 __printflike(1, 2);
38138451Smsmithextern struct fs_ops	*file_system[];
382269308Smarcelextern struct fs_ops	*exclusive_file_system;
38338451Smsmithextern struct devsw	*devsw[];
38438451Smsmith
38590868Smike/*
38690868Smike * Expose byteorder(3) functions.
38790868Smike */
38891959Smike#ifndef _BYTEORDER_PROTOTYPED
38991959Smike#define	_BYTEORDER_PROTOTYPED
39091959Smikeextern uint32_t		htonl(uint32_t);
39191959Smikeextern uint16_t		htons(uint16_t);
39291959Smikeextern uint32_t		ntohl(uint32_t);
39391959Smikeextern uint16_t		ntohs(uint16_t);
39491959Smike#endif
39591959Smike
39691959Smike#ifndef _BYTEORDER_FUNC_DEFINED
39791959Smike#define	_BYTEORDER_FUNC_DEFINED
39890868Smike#define	htonl(x)	__htonl(x)
39990868Smike#define	htons(x)	__htons(x)
40090868Smike#define	ntohl(x)	__ntohl(x)
40190868Smike#define	ntohs(x)	__ntohs(x)
40291959Smike#endif
40390868Smike
404100394Spetervoid *Malloc(size_t, const char *, int);
405100394Spetervoid *Calloc(size_t, size_t, const char *, int);
406100394Spetervoid *Realloc(void *, size_t, const char *, int);
407100394Spetervoid Free(void *, const char *, int);
40839672Sdfr
409100394Speter#if 1
410100394Speter#define malloc(x)	Malloc(x, __FILE__, __LINE__)
411100394Speter#define calloc(x, y)	Calloc(x, y, __FILE__, __LINE__)
412100394Speter#define free(x)		Free(x, __FILE__, __LINE__)
413100394Speter#define realloc(x, y)	Realloc(x, y, __FILE__, __LINE__)
414100394Speter#else
415102216Sscottl#define malloc(x)	Malloc(x, NULL, 0)
416100394Speter#define calloc(x, y)	Calloc(x, y, NULL, 0)
417100394Speter#define free(x)		Free(x, NULL, 0)
418100394Speter#define realloc(x, y)	Realloc(x, y, NULL, 0)
41939672Sdfr#endif
420146327Sobrien
421146327Sobrien#endif	/* STAND_H */
422