rename some headers

This commit is contained in:
speedie 2023-05-10 08:20:29 +02:00
parent d065aa8ab6
commit 6c146c87b4
4 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@
#include <pango/pangoxft.h> #include <pango/pangoxft.h>
#endif #endif
#include "draw.h" #include "drw.h"
#include "../sl/main.h" #include "../sl/main.h"
#if !USEPANGO #if !USEPANGO

View file

@ -8,7 +8,7 @@ project(
cc = meson.get_compiler('c') cc = meson.get_compiler('c')
project_source_files = [ project_source_files = [
'libs/libdrw/draw.c', 'libs/libdrw/drw.c',
'spmenu.c', 'spmenu.c',
'libs/sl/main.c', 'libs/sl/main.c',
] ]

View file

@ -115,7 +115,7 @@ static int curMode = 1; // 0 is command mode
static int allowkeys = 1; // whether or not to interpret a keypress as an insertion static int allowkeys = 1; // whether or not to interpret a keypress as an insertion
// various headers // various headers
#include "libs/libdrw/draw.h" #include "libs/libdrw/drw.h"
#include "libs/sl/main.h" #include "libs/sl/main.h"
#include "libs/draw.h" #include "libs/draw.h"
#include "libs/stream.h" #include "libs/stream.h"