mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-07 16:31:32 +00:00
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
|