blob: 1ed76d72410ad7bbdf5e016caa563d216cfc3a87 [file] [log] [blame]
// This file is distributed under the University of Illinois Open Source License.
// See LICENSE.TXT for details.
#include <stdio.h>
int main()
{
FILE *fp = fopen("nselector.h", "w");
if (sizeof(long) == 8)
fprintf(fp, "#define ABI_SELECTOR(a,b,c,d,e) a // LP64\n");
else
fprintf(fp, "#define ABI_SELECTOR(a,b,c,d,e) b // ILP32 \n");
return 0;
}