mirror of
https://git.suckless.org/9base
synced 2025-08-26 18:03:48 -07:00
11 lines
153 B
C
11 lines
153 B
C
#include <fmt.h>
|
|
#include <setjmp.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#define exits(x) exit(x && *x ? 1 : 0)
|
|
|
|
#define nil 0
|
|
|