Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
fix use after free in font caching algorithm
[st.git]
/
st.h
diff --git
a/st.h
b/st.h
index
1015fc6
..
38c61c4
100644
(file)
--- a/
st.h
+++ b/
st.h
@@
-1,5
+1,8
@@
/* See LICENSE for license details. */
/* See LICENSE for license details. */
+#include <stdint.h>
+#include <sys/types.h>
+
/* macros */
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) < (b) ? (b) : (a))
/* macros */
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) < (b) ? (b) : (a))
@@
-77,7
+80,6
@@
void die(const char *, ...);
void redraw(void);
void draw(void);
void redraw(void);
void draw(void);
-void iso14755(const Arg *);
void printscreen(const Arg *);
void printsel(const Arg *);
void sendbreak(const Arg *);
void printscreen(const Arg *);
void printsel(const Arg *);
void sendbreak(const Arg *);