1 2 3 4 5 6 7 8
#pragma once static inline int syscall(int number) { asm volatile("int $0x80"); return 0; }