mirror of
https://codeberg.org/dwl/dwl.git
synced 2026-04-07 08:21:07 -04:00
allow use config.def.h instead of config.h
This commit is contained in:
parent
e6a0980cf9
commit
25a96a8190
3 changed files with 11 additions and 2 deletions
8
dwl.c
8
dwl.c
|
|
@ -436,7 +436,13 @@ static Atom netatom[NetLast];
|
|||
|
||||
/* configuration, allows nested code to access above variables */
|
||||
#include "push.h"
|
||||
#include "config.h"
|
||||
|
||||
#ifdef USE_CONFIG_DEF_H
|
||||
# include "config.def.h"
|
||||
#else
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include "push.c"
|
||||
|
||||
/* attempt to encapsulate suck into one file */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue