Skip to content

Commit

Permalink
🚨 Fix redefinitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Freed-Wu committed Sep 29, 2024
1 parent c6ae791 commit 2a4fd05
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
#include <sys/stat.h>
// https://stackoverflow.com/a/48521433/16027269
#define termios asmtermios
#define winsize asmwinsize
#define termio asmtermio
#include <asm/termios.h>
#undef termios
#undef winsize
#undef termio
#include <termios.h>

#include "coding.h"
Expand Down

0 comments on commit 2a4fd05

Please sign in to comment.