userland: start per-directory flags with userland/gcc

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-03-13 00:00:01 +00:00
parent a85ca696c4
commit e32dcb85e9
4 changed files with 45 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
/* Empty struct */
#include <assert.h>
#include <stdlib.h>
int main(void) {
struct s {};
struct s s0;
assert(sizeof(s0) == 0);
return EXIT_SUCCESS;
}