Skip to content

Commit

Permalink
Fix warning for -Wmissing-prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed Mar 31, 2023
1 parent 9ebe5cb commit 2624069
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/astcenccli_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -395,4 +395,16 @@ void launch_threads(
void (*func)(int, int, void*),
void *payload);

/**
* @brief The main entry point.
*
* @param argc The number of arguments.
* @param argv The vector of arguments.
*
* @return 0 on success, non-zero otherwise.
*/
int astcenc_main(
int argc,
char **argv);

#endif

0 comments on commit 2624069

Please sign in to comment.