summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2016-04-13 18:19:49 +0100
committerEmil Velikov <[email protected]>2016-04-14 16:38:31 +0100
commit8f96524f1390de0a54df029f29018379a8d9bd97 (patch)
treed90c22dbc4af48b1019f9465a9b1fffd7f22d21e
parentf8e2f1fba5149a494360ad76a1f90e729de28a0b (diff)
nir: Remove unistd.h include.
It doesn't seem needed, and is not available on MSVC. Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Jose Fonseca <[email protected]>
-rw-r--r--src/compiler/nir/nir_to_ssa.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_to_ssa.c b/src/compiler/nir/nir_to_ssa.c
index 23d709a218a..1a772fff2d5 100644
--- a/src/compiler/nir/nir_to_ssa.c
+++ b/src/compiler/nir/nir_to_ssa.c
@@ -27,7 +27,6 @@
#include "nir.h"
#include <stdlib.h>
-#include <unistd.h>
/*
* Implements the classic to-SSA algorithm described by Cytron et. al. in