Yasm Assembler mainline development tree (ffmpeg 依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
251 B

#ifndef re2c_basics_h
#define re2c_basics_h
#if defined(__GNUC__) && !defined(inline)
#define inline __inline__
#endif
typedef unsigned char byte;
typedef unsigned short word;
typedef unsigned long dword;
#define PACKAGE_VERSION "1.0.0"
#endif