From 89c438e149a91fffa74b2669f7e0cd05abc3420f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 20 Apr 2023 14:06:43 +0100 Subject: Declare all dsfs as a dedicated type name 'DSF'. In this commit, 'DSF' is simply a typedef for 'int', so that the new declaration form 'DSF *' translates to the same type 'int *' that dsfs have always had. So all we're doing here is mechanically changing type declarations throughout the code. --- auxiliary/divvy-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auxiliary') diff --git a/auxiliary/divvy-test.c b/auxiliary/divvy-test.c index b7e3d6c..14100da 100644 --- a/auxiliary/divvy-test.c +++ b/auxiliary/divvy-test.c @@ -7,7 +7,7 @@ int main(int argc, char **argv) { - int *dsf; + DSF *dsf; int i; int w = 9, h = 4, k = 6, tries = 100; random_state *rs; -- cgit v1.1