diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-20 21:33:44 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-20 21:33:44 +0100 |
commit | 10d71adfc47091a62ad9b937943c312c1baf20af (patch) | |
tree | e536fb74a2b473544b37c5f7c3538ab19af90870 /hungarian.c | |
parent | Make code nice (diff) | |
download | hungarian-algorithm-n3-10d71adfc47091a62ad9b937943c312c1baf20af.tar.gz hungarian-algorithm-n3-10d71adfc47091a62ad9b937943c312c1baf20af.tar.bz2 hungarian-algorithm-n3-10d71adfc47091a62ad9b937943c312c1baf20af.tar.xz |
Use c99
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'hungarian.c')
-rw-r--r-- | hungarian.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hungarian.c b/hungarian.c index 38c9f55..faf7243 100644 --- a/hungarian.c +++ b/hungarian.c @@ -11,6 +11,7 @@ */ +#include <sys/types.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> |