Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#ifndef _HACKED_SYS_SHM_H
2
#define _HACKED_SYS_SHM_H
3
 
4
#include <sys/param.h>
5
 
6
#ifdef __BUILDING_LIBS
7
#define shmctl	shmctl_wrong
8
#define uint_t	int
9
#endif
10
 
11
#include_next <sys/shm.h>
12
 
13
#ifdef __BUILDING_LIBS
14
#undef shmctl
15
#undef uint_t
16
extern int shmctl ( int, int, struct shmid_ds * ) ;
17
#endif
18
 
19
#endif