mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
13 lines
168 B
Objective-C
13 lines
168 B
Objective-C
#ifndef __Void_h
|
|
#define __Void_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Void: SchemeObject
|
|
{
|
|
}
|
|
+ (id) voidConstant;
|
|
@end
|
|
|
|
@extern Void voidConstant;
|
|
|
|
#endif //__Void_h
|