mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
25 lines
482 B
Plaintext
25 lines
482 B
Plaintext
From dccd4cbf2192dd45611fc121b9e70178e616212a Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@gmail.com>
|
|
Date: Wed, 22 Oct 2014 21:18:47 +0200
|
|
Subject: Fix build on Haiku.
|
|
|
|
It sems this include is useless.
|
|
|
|
diff --git a/randutils.c b/randutils.c
|
|
index 80893d3..e7fa7c3 100644
|
|
--- a/randutils.c
|
|
+++ b/randutils.c
|
|
@@ -13,7 +13,9 @@
|
|
#include <string.h>
|
|
#include <sys/time.h>
|
|
|
|
+#ifndef __HAIKU__
|
|
#include <sys/syscall.h>
|
|
+#endif
|
|
|
|
#include "randutils.h"
|
|
|
|
--
|
|
1.8.3.4
|
|
|