From a34da2bbaeeefbd1fa40f42eef7564a495290912 Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Sun, 4 Jan 2026 14:17:04 +0300 Subject: feat(linux): some patches --- 2048.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/2048.c b/2048.c index 9209597..918654c 100644 --- a/2048.c +++ b/2048.c @@ -23,16 +23,10 @@ typedef unsigned uint; #if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) -#ifndef _DEFAULT_SOURCE -#define _DEFAULT_SOURCE -#endif -#include -#if !(defined(__GLIBC__) && defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 36)) static inline uint arc4random_uniform(uint upper_bound) { return rand() % upper_bound; } #endif -#endif static uint score; static uint grid[4][4]; -- cgit 1.4.1