removed tabs

This commit is contained in:
Michael Kerrisk 2006-04-03 21:25:43 +00:00
parent 5250b79560
commit 70f4032165
1 changed files with 10 additions and 10 deletions

View File

@ -46,17 +46,17 @@ The
is defined as :
.sp
.nf
typedef union epoll_data {
void *ptr;
int fd;
__uint32_t u32;
__uint64_t u64;
} epoll_data_t;
typedef union epoll_data {
void *ptr;
int fd;
__uint32_t u32;
__uint64_t u64;
} epoll_data_t;
struct epoll_event {
__uint32_t events; /* Epoll events */
epoll_data_t data; /* User data variable */
};
struct epoll_event {
__uint32_t events; /* Epoll events */
epoll_data_t data; /* User data variable */
};
.fi
The