16 lines
265 B
C
16 lines
265 B
C
/*
|
|
* $Id: types.h,v 1.4 2005-02-07 15:10:41 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_LISP_TYPES_H_
|
|
#define _XP_LISP_TYPES_H_
|
|
|
|
#include <xp/types.h>
|
|
#include <xp/macros.h>
|
|
|
|
typedef xp_cint_t xp_lisp_cint;
|
|
typedef xp_long_t xp_lisp_int;
|
|
typedef xp_real_t xp_lisp_float;
|
|
|
|
#endif
|