blob: 77a134f36449e7666caa5e768d5b7770cd96bdd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -*- C -*-
* $Id$
*/
#ifndef DEFS_H
#define DEFS_H
#include "ruby.h"
#include <sys/types.h>
#if defined(HAVE_SYS_CDEFS_H)
# include <sys/cdefs.h>
#endif
#if !defined(__BEGIN_DECLS)
# define __BEGIN_DECLS
# define __END_DECLS
#endif
#endif /* DEFS_H */
|