Skip to content

Commit

Permalink
Fixed int types header include and the return value of main().
Browse files Browse the repository at this point in the history
  • Loading branch information
hozuki committed Oct 4, 2018
1 parent 8125429 commit e2ac87f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/apps/acbunpack/acbunpack.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#include <stdio.h>
#include <inttypes.h>
#include <stdint.h>
#include <string.h>

#if defined(_WIN32) || defined(WIN32)

#define WIN32_LEAN_AND_MEAN

#include <windows.h>
Expand Down Expand Up @@ -83,6 +84,8 @@ int main(int argc, const char *argv[]) {

delete acb;
delete fileStream;

return 0;
}

void print_help() {
Expand Down

0 comments on commit e2ac87f

Please sign in to comment.