initial pass at simulator support
This commit is contained in:
@@ -35,6 +35,12 @@
|
||||
|
||||
#if __EMSCRIPTEN__
|
||||
#include <emscripten.h>
|
||||
|
||||
#define min(a,b) \
|
||||
({ __typeof__ (a) _a = (a); \
|
||||
__typeof__ (b) _b = (b); \
|
||||
_a < _b ? _a : _b; })
|
||||
|
||||
#endif
|
||||
|
||||
#include "watch.h"
|
||||
|
||||
Reference in New Issue
Block a user