4 printf "#ifndef _LIBC_ABIS_H\n#define _LIBC_ABIS_H 1\n\n"
5 printf "enum\n{\n LIBC_ABI_DEFAULT = 0,\n"
8 if test "$s" = "#" ||
test -z "$s"; then continue; fi
10 printf " LIBC_ABI_%s,\n" "$s"
11 features
="$features $s"
14 $t) printf " LIBC_ABI_%s,\n" "$s"
15 features
="$features $s" ;;
21 printf " LIBC_ABI_MAX\n};\n"
24 if test -n "$features"; then
25 printf "#define LIBC_ABIS_STRING \"libc ABIs:%s\\\\n\"\n" "$features"