summaryrefslogtreecommitdiffstats
path: root/loader/mkctype.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-07 23:13:49 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-07 23:13:49 +0000
commit61bf7b98c090e3332e9fb469f07ca4c5bf4ca184 (patch)
tree5e751befbc71ed119c0a91753f91a405fc173f8e /loader/mkctype.c
parent7a580c898db8aad8e8619d562b453436df47cb7e (diff)
downloadanaconda-61bf7b98c090e3332e9fb469f07ca4c5bf4ca184.tar.gz
anaconda-61bf7b98c090e3332e9fb469f07ca4c5bf4ca184.tar.xz
anaconda-61bf7b98c090e3332e9fb469f07ca4c5bf4ca184.zip
remove old loader dir. for referencing, go back to anaconda-8-0-branch
Diffstat (limited to 'loader/mkctype.c')
-rw-r--r--loader/mkctype.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/loader/mkctype.c b/loader/mkctype.c
deleted file mode 100644
index ed00411a9..000000000
--- a/loader/mkctype.c
+++ /dev/null
@@ -1,57 +0,0 @@
-#include <ctype.h>
-#include <stdio.h>
-
-#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
-# define __ctype_b (*__ctype_b_loc())
-# define __ctype_tolower (*__ctype_tolower_loc())
-# define __ctype_toupper (*__ctype_toupper_loc())
-#endif
-
-int main(int argc, char ** argv) {
- int i;
-
- printf("#include <sys/types.h>\n\n");
-
- printf("static const unsigned short int __ctype_b_internal[] = {");
-
- for (i = -128; i < 256; i++) {
- if (!(i % 8)) {
- printf("\n");
- }
-
- printf("\t0x%x,", __ctype_b[i]);
- }
-
- printf("\n};\n\n");
- printf("const unsigned short int * __ctype_b = __ctype_b_internal + 128;\n\n");
-
- printf("const int __ctype_toupper_internal[] = {");
- for (i = -128; i < 256; i++) {
- if (!(i % 8)) {
- printf("\n");
- }
-
- printf("\t0x%x,", __ctype_toupper[i]);
- }
-
- printf("\n};\n\n");
- printf("const int * __ctype_toupper = __ctype_toupper_internal + 128;\n\n");
-
- printf("const int __ctype_tolower_internal[] = {");
- for (i = -128; i < 256; i++) {
- if (!(i % 8)) {
- printf("\n");
- }
-
- printf("\t0x%x,", __ctype_tolower[i]);
- }
-
- printf("\n};\n\n");
- printf("const int * __ctype_tolower = __ctype_tolower_internal + 128;\n\n");
-
- printf ("const unsigned short int **__ctype_b_loc (void) { return &__ctype_b; }\n");
- printf ("const int **__ctype_toupper_loc (void) { return &__ctype_toupper; }\n");
- printf ("const int **__ctype_tolower_loc (void) { return &__ctype_tolower; }\n\n");
-
- return 0;
-};