Files
linux-kernel-module-cheat/userland/c/add.c
Ciro Santilli 六四事件 法轮功 fbfc4905ec baremetal: build userland programs using userland_and_baremetal instead of symlinks
Otherwise I'll go crazy with symlink action.
2019-05-23 00:00:01 +00:00

14 lines
201 B
C

#include <assert.h>
int main(void) {
int i, j, k;
i = 1;
/* test-gdb-op1 */
j = 2;
/* test-gdb-op2 */
k = i + j;
/* test-gdb-result */
if (k != 3)
assert(0);
}