shithub: scc

Download patch

ref: 2ccd8d847b565a199d28acb8015c401a9d511a6d
parent: a43b681fd4f60b2e03793ce9b39bc271ab6176e9
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Jan 24 12:06:05 EST 2017

[tests] Use stdint.h in 0107-bnot.c

This test was assuming several sizes in the integer types
which is totall wrong for a test.

--- a/tests/execute/0107-bnot.c
+++ b/tests/execute/0107-bnot.c
@@ -1,10 +1,11 @@
 
+#include <stdint.h>
 
 int
 main()
 {
-	int x;
-	long long l;
+	int32_t x;
+	int64_t l;
 	
 	x = 0;
 	l = 0;