aboutsummaryrefslogtreecommitdiff
path: root/tests/libfstree/sort_file.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-12-04 21:12:06 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2022-03-30 22:31:30 +0200
commitbb526954f24b2be5c574810a72395461cadd2d0c (patch)
tree297ed4b856dd47dae636e0ebd16671841ef810e4 /tests/libfstree/sort_file.c
parentadc4ee5ad033485a558bd219120e5231e7f9008f (diff)
Fix: unit test and sample program Windows build
Now that there is a wrapper for main() on Windows, all executable programs must use a common, cannonical signature for main(). Furthermore, the Windows version of the epoch test needs wrappers for setenv/unsetenv. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libfstree/sort_file.c')
-rw-r--r--tests/libfstree/sort_file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libfstree/sort_file.c b/tests/libfstree/sort_file.c
index 39e4f23..686ee68 100644
--- a/tests/libfstree/sort_file.c
+++ b/tests/libfstree/sort_file.c
@@ -147,11 +147,12 @@ static istream_t memstream = {
/*****************************************************************************/
-int main(void)
+int main(int argc, char **argv)
{
file_info_t *fi;
fstree_t fs;
size_t i;
+ (void)argc; (void)argv;
input_file = listing;
memstream.buffer_used = 0;