diff options
| author | Lain Iwakura <lain@lainmail.xyz> | 2026-01-04 14:10:05 +0300 |
|---|---|---|
| committer | Lain Iwakura <lain@lainmail.xyz> | 2026-01-04 14:10:05 +0300 |
| commit | 337429fdc2445cf115d180163fb33149366f91b5 (patch) | |
| tree | 9f7d2a0372ac0270c8cefd8c0671388738cf2f34 | |
| parent | feat(linux): some patches (diff) | |
| download | play-337429fdc2445cf115d180163fb33149366f91b5.tar.gz play-337429fdc2445cf115d180163fb33149366f91b5.zip | |
feat(linux): some patches
| -rw-r--r-- | freecell.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/freecell.c b/freecell.c index 0b77e6f..a97e3b3 100644 --- a/freecell.c +++ b/freecell.c @@ -14,6 +14,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef _DEFAULT_SOURCE +#define _DEFAULT_SOURCE +#endif + #include <assert.h> #include <ctype.h> #include <curses.h> |