Skip to content

Commit

Permalink
fix: #includes 👀
Browse files Browse the repository at this point in the history
  • Loading branch information
javalsai committed Dec 25, 2024
1 parent 4c7d221 commit e13a8ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/util.h
Original file line number Diff line number Diff line change
@@ -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 *);
Expand Down
1 change: 1 addition & 0 deletions src/ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "keys.h"
#include "sessions.h"
#include "ui.h"
#include "users.h"
#include "util.h"

static void print_box();
Expand Down

0 comments on commit e13a8ff

Please sign in to comment.