Fix MODE=tiny build

This commit is contained in:
Justine Tunney 2022-07-14 05:42:24 -07:00
parent 1d744ea11b
commit 4901e1b8cb
2 changed files with 32 additions and 22 deletions

View file

@ -23,6 +23,8 @@
#include "libc/sysv/consts/prot.h"
#include "libc/testlib/testlib.h"
#if 0 // TODO(jart): fix MODE=tiny
/**
* @fileoverview tests executable stack
*/
@ -39,3 +41,5 @@ TEST(xstack, test) {
int (*func)(void) = (void *)code;
ASSERT_EQ(7, func());
}
#endif