Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Fix SIGWINCH definition on BSDs
Browse files Browse the repository at this point in the history
  • Loading branch information
wooosh committed Jul 16, 2020
1 parent 4b4b253 commit 9d7b101
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cfm.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#ifdef __APPLE__
# define _DARWIN_C_SOURCE
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
#define __BSD_VISIBLE 1
#endif

#include <ctype.h>
Expand Down

0 comments on commit 9d7b101

Please sign in to comment.