make clang happier about unused argc/argv in main()
This commit is contained in:
parent
8d149f026a
commit
f04c4686c6
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ void dienomem() {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(void) {
|
||||||
pthread_t threads[NUM_THREADS];
|
pthread_t threads[NUM_THREADS];
|
||||||
|
|
||||||
for (int t = 0; t < NUM_THREADS; t++) {
|
for (int t = 0; t < NUM_THREADS; t++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue