13 lines
218 B
C
13 lines
218 B
C
#ifndef INCLUDED_UTIL_H
|
|
#define INCLUDED_UTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
# define LISP_BEGIN_DECLS extern "C" {
|
|
# define LISP_END_DECLS }
|
|
#else
|
|
# define LISP_BEGIN_DECLS
|
|
# define LISP_END_DECLS
|
|
#endif
|
|
|
|
#endif
|