| /* |
| * This file is subject to the terms and conditions of the GNU General Public |
| * License. See the file "COPYING" in the main directory of this archive |
| * for more details. |
| * |
| * Copyright (C) Hewlett-Packard (Paul Bame) paul_bame@hp.com |
| */ |
| #include <sys/types.h> |
| #define _LINUX_TYPES_H |
| #include "common.h" |
| |
| extern void error(int number, ...); |
| |
| /* paloio.c */ |
| extern int seekwrite(int fd, char *buf, unsigned size, unsigned where); |
| extern int seekread(int fd, char *buf, unsigned size, unsigned where); |
| extern int cat(int out, int in); |
| extern int fsize(int fd); |
| |
| /* $Id: palo.h,v 1.1 2000/02/29 17:41:28 bame Exp $ */ |