summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/stand/libsa/libsa.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-05-06 02:26:16 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-05-06 02:26:16 +0000
commit2e4b9cc2602db074990c2d312348778bfa101a26 (patch)
treef67d01308d83f274f08e86d2bab8ecfaa769207e /sys/arch/hppa/stand/libsa/libsa.h
parent457e0b856f15c6d8e2f91bc58027d0fb0680c3a7 (diff)
add lif_* prototypes
Diffstat (limited to 'sys/arch/hppa/stand/libsa/libsa.h')
-rw-r--r--sys/arch/hppa/stand/libsa/libsa.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/hppa/stand/libsa/libsa.h b/sys/arch/hppa/stand/libsa/libsa.h
index d5d91a826f8..0dbc28cc4cb 100644
--- a/sys/arch/hppa/stand/libsa/libsa.h
+++ b/sys/arch/hppa/stand/libsa/libsa.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: libsa.h,v 1.5 1998/09/29 07:22:45 mickey Exp $ */
+/* $OpenBSD: libsa.h,v 1.6 1999/05/06 02:26:15 mickey Exp $ */
/*
* Copyright (c) 1998 Michael Shalayeff
@@ -66,4 +66,15 @@ void machdep __P((void));
void devboot __P((dev_t, char *));
void fcacheall __P((void));
+int lif_open __P((char *path, struct open_file *f));
+int lif_close __P((struct open_file *f));
+int lif_read __P((struct open_file *f, void *buf,
+ size_t size, size_t *resid));
+int lif_write __P((struct open_file *f, void *buf,
+ size_t size, size_t *resid));
+off_t lif_seek __P((struct open_file *f, off_t offset, int where));
+int lif_stat __P((struct open_file *f, struct stat *sb));
+int lif_readdir __P((struct open_file *f, char *name));
+
+
extern int debug;