fix: #includes 👀

This commit is contained in:
javalsai 2024-12-25 20:16:25 +01:00
parent 4c7d221a17
commit e13a8ff79c
Signed by: javalsai
SSH Key Fingerprint: SHA256:3G83yKhBUWVABVX/vPWH88xnK4+ptMtHkZGCRXD4Mk8
2 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,11 @@
#ifndef _UTILH_
#define _UTILH_
#include <stdbool.h>
#include <stdint.h>
#include <sys/types.h>
#include "keys.h"
#include "stdbool.h"
#include "stdint.h"
#include "sys/types.h"
enum keys find_keyname(char *);
enum keys find_ansi(char *);

View File

@ -21,6 +21,7 @@
#include "keys.h"
#include "sessions.h"
#include "ui.h"
#include "users.h"
#include "util.h"
static void print_box();