Source release v3.2.0

This commit is contained in:
Gene Morgan
2017-02-01 16:36:41 -08:00
parent 643b91b616
commit 2fde891c01
370 changed files with 40622 additions and 276133 deletions

View File

@@ -122,5 +122,5 @@ again:
}
}
return 0;
return EXIT_SUCCESS;
}

View File

@@ -8,7 +8,7 @@
* tokens is predictable.
*/
const char *JSON_STRING =
static const char *JSON_STRING =
"{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n "
"\"groups\": [\"users\", \"wheel\", \"audio\", \"video\"]}";
@@ -72,5 +72,5 @@ int main() {
JSON_STRING + t[i].start);
}
}
return 0;
return EXIT_SUCCESS;
}