/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1992, 1993, 1995, 2000 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* Declarations for libc to keep lint happy. */

#ifndef LIBC_EXPORTS_H
#define LIBC_EXPORTS_H

#ifndef UNIX_STDIO_H
#include "unix_stdio.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

#ifdef SOLARIS_1
extern int	abort(void);
extern int	atoi(const char *);
extern long	strtol(const char *, Str *, int);
extern int	chdir(Str);
extern int	close(int);
extern int	execl(char *, ...);
extern int	execv(Str, Str *);
extern int	execvp(Str, Str *);
extern void	exit(int);
extern Str	getcwd(Str, int);
extern char	*getenv(const char *);
extern int	getpagesize(void);
extern int	getw(Stdio);
extern Str	getwd(Str);
extern int	lseek(int, long, int);
extern int	open(Str, int, int);
extern Str	malloc(int);
extern int	putenv(Str);
extern int	putw(int, Stdio);
extern int	read(int, Str, int);
extern Str	realloc(void *, int);
extern Str	realpath(const Str, Str);
extern int	system(const char *);
extern int	unlink(const Str);
extern int	write(int, void *, unsigned);
#endif /* SOLARIS_1 */

#endif /* LIBC_EXPORTS_H */
