Skip to content

Commit

Permalink
add missing includes for void linux musl
Browse files Browse the repository at this point in the history
  • Loading branch information
d99kris committed Nov 12, 2023
1 parent 02f91fc commit 5d0dd4a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/common/src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

#pragma once

#define NCHAT_VERSION "3.97"
#define NCHAT_VERSION "3.98"
1 change: 1 addition & 0 deletions lib/ncutil/src/fileutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "fileutil.h"

#include <climits>
#include <fstream>

#include <wordexp.h>
Expand Down
2 changes: 1 addition & 1 deletion src/nchat.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
.TH NCHAT "1" "November 2023" "nchat v3.97" "User Commands"
.TH NCHAT "1" "November 2023" "nchat v3.98" "User Commands"
.SH NAME
nchat \- ncurses chat
.SH SYNOPSIS
Expand Down
4 changes: 3 additions & 1 deletion src/uikeydump.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// uikeydump.cpp
//
// Copyright (c) 2022 Kristofer Berggren
// Copyright (c) 2022-2023 Kristofer Berggren
// All rights reserved.
//
// nchat is distributed under the MIT license, see LICENSE for details.
Expand All @@ -10,6 +10,8 @@
#include <locale.h>
#include <unistd.h>

#include <sys/select.h>

#include <ncurses.h>

#include "uikeyconfig.h"
Expand Down

0 comments on commit 5d0dd4a

Please sign in to comment.