aboutsummaryrefslogtreecommitdiff
path: root/pfinet/asm/segment.h
blob: ff8eb64d343bcbf908c3b5fe446527c73260cc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _HACK_ASM_SEGMENT_H_
#define _HACK_ASM_SEGMENT_H_

#define get_fs_long(addr) get_user_long((int *)(addr))

u_long get_user_long (const int *addr);

#define put_fs_long(x,addr) put_user_long((x),(int *)(addr))

void put_user_long (u_long, int *);