checking sizeof (void) at the runtime
This commit is contained in:
parent
365ebd3ecd
commit
136dbd0093
5
main.c
5
main.c
@ -181,6 +181,11 @@ char *make_full_path (char *s) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void running_for_first_time (void) {
|
void running_for_first_time (void) {
|
||||||
|
if (sizeof (void) != 1) {
|
||||||
|
logprintf ("sizeof (void) isn't equal 1\n");
|
||||||
|
logprintf ("GNU C compiler extension isn't available?\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
if (config_filename) {
|
if (config_filename) {
|
||||||
return; // Do not create custom config file
|
return; // Do not create custom config file
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user