Added header guards; fixed linter errors

This commit is contained in:
--unset 2020-11-05 18:00:50 +01:00
parent 9fca78f0dd
commit 68ce8a3914
3 changed files with 15 additions and 2 deletions

View file

@ -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