The R Project SVN R

Rev

Rev 42308 | Rev 42535 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42308 Rev 42409
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 2000, 2001 The R Development Core Team.
3
 *  Copyright (C) 2000-2007 The R Development Core Team.
4
 *
4
 *
5
 *  This program is free software; you can redistribute it and/or modify
5
 *  This program is free software; you can redistribute it and/or modify
6
 *  it under the terms of the GNU Lesser General Public License as published by
6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
7
 *  the Free Software Foundation; either version 2.1 of the License, or
8
 *  (at your option) any later version.
8
 *  (at your option) any later version.
Line 18... Line 18...
18
 */
18
 */
19
 
19
 
20
#ifndef R_EXT_EVENTLOOP_H
20
#ifndef R_EXT_EVENTLOOP_H
21
#define R_EXT_EVENTLOOP_H
21
#define R_EXT_EVENTLOOP_H
22
 
22
 
23
/* NOTE:
23
#ifndef NO_C_HEADERS
24
   Needed at least on FreeBSD so that fd_set is defined.
24
/* NOTE: Needed at least on FreeBSD so that fd_set is defined. */
25
*/
-
 
26
#include <sys/types.h>
25
# include <sys/types.h>
-
 
26
#endif
27
 
27
 
28
#ifdef  __cplusplus
28
#ifdef  __cplusplus
29
extern "C" {
29
extern "C" {
30
#endif
30
#endif
31
 
31