Added header guards; fixed linter errors
This commit is contained in:
parent
9fca78f0dd
commit
68ce8a3914
3 changed files with 15 additions and 2 deletions
|
|
@ -1,7 +1,11 @@
|
|||
/* See LICENSE for license details. */
|
||||
|
||||
#ifndef ST_H
|
||||
#define ST_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <stddef.h>
|
||||
|
||||
/* macros */
|
||||
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
||||
|
|
@ -123,3 +127,5 @@ extern char *termname;
|
|||
extern unsigned int tabspaces;
|
||||
extern unsigned int defaultfg;
|
||||
extern unsigned int defaultbg;
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Reference in a new issue