Refresh terminal after updating alpha

This commit is contained in:
Utkarsh Verma 2022-06-02 09:09:14 +05:30
parent 4e2347da12
commit 27f513920f
No known key found for this signature in database
GPG key ID: 817656CF818EFCCC
4 changed files with 16 additions and 12 deletions

1
util.h
View file

@ -6,6 +6,7 @@
#define ALEN(v) (sizeof(v) / sizeof((v)[0]))
#define min(x, y) ((x) < (y) ? (x) : (y))
#define max(x, y) ((x) > (y) ? (x) : (y))
#define clamp(x, lower, upper) (min(upper, max(x, lower)))
static inline const char *
thrd_err_as_string(int thrd_err)