Made easier to use other compiler

This commit is contained in:
ceriel
1989-02-16 16:33:29 +00:00
parent f7790b0e8e
commit 9751e398e3
14 changed files with 279 additions and 204 deletions

View File

@@ -13,12 +13,12 @@ main()
{
if (sizeof(unsigned int) == sizeof(char *)) {
puts("typedef unsigned int size_type;");
return 0;
exit(0);
}
if (sizeof(long) == sizeof(char *)) {
puts("typedef long size_type;");
return 0;
exit(0);
}
fputs(stderr, "funny pointer size\n");
return 1;
exit(1);
}