diff options
Diffstat (limited to 'ulib.c')
-rw-r--r-- | ulib.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -56,3 +56,11 @@ close(int fd) asm("mov $8, %eax"); asm("int $48"); } + +int +block(void) +{ + asm("mov $9, %eax"); + asm("int $48"); +} + |