summaryrefslogtreecommitdiff
path: root/pfinet/asm
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-08-08 16:51:06 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-08-08 16:51:06 +0000
commit3117e414549e0fd1725da5be9f5eb072fe7b8e32 (patch)
treea88841db7cc995adf33eec833dd73b8292e171ce /pfinet/asm
parente8529267c4e2ddf527cbdee2bcaf5972f2995500 (diff)
Formerly segment.h.~5~
Diffstat (limited to 'pfinet/asm')
-rw-r--r--pfinet/asm/segment.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pfinet/asm/segment.h b/pfinet/asm/segment.h
index 6278814d..433e5882 100644
--- a/pfinet/asm/segment.h
+++ b/pfinet/asm/segment.h
@@ -6,6 +6,9 @@
#define get_fs_long(addr) get_user_long((int *)(addr))
unsigned long get_user_long (const int *addr);
+#define get_fs_byte(addr) get_user_byte((char *)(addr))
+char get_user_byte (const char *addr);
+
#define put_fs_long(x,addr) put_user_long((x),(int *)(addr))
void put_user_long (unsigned long, int *);