summaryrefslogtreecommitdiff
path: root/mcon/U/models.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/models.U')
-rw-r--r--mcon/U/models.U6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcon/U/models.U b/mcon/U/models.U
index b903134..52cdd14 100644
--- a/mcon/U/models.U
+++ b/mcon/U/models.U
@@ -64,11 +64,11 @@ case "$models" in
?X: We may not use Cppsym or we get a circular dependency through cc.
?X: But this should work regardless of which cc we eventually use.
$cat >pdp11.c <<'EOP'
-int main() {
+int main(void) {
#ifdef pdp11
- exit(0);
+ return 0;
#else
- exit(1);
+ return 1;
#endif
}
EOP