Skip to content

Commit 2624069

Browse files
committed
Fix warning for -Wmissing-prototypes
1 parent 9ebe5cb commit 2624069

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Source/astcenccli_internal.h

+12
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,16 @@ void launch_threads(
395395
void (*func)(int, int, void*),
396396
void *payload);
397397

398+
/**
399+
* @brief The main entry point.
400+
*
401+
* @param argc The number of arguments.
402+
* @param argv The vector of arguments.
403+
*
404+
* @return 0 on success, non-zero otherwise.
405+
*/
406+
int astcenc_main(
407+
int argc,
408+
char **argv);
409+
398410
#endif

0 commit comments

Comments
 (0)