summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/stand/libsa/libsa.h
diff options
context:
space:
mode:
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;