summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/dietfeatures.h
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-05-14 14:19:32 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-05-14 14:19:32 +0000
commit167217bec15c9c7aa70ba2a3dc9c689b3cd91872 (patch)
tree7c0c62debf8f9f145643102fb52b81afce743594 /mdk-stage1/dietlibc/dietfeatures.h
parent9097327dc1c667fc51b8e05cc7c0626fac96665d (diff)
downloaddrakx-backup-do-not-use-167217bec15c9c7aa70ba2a3dc9c689b3cd91872.tar
drakx-backup-do-not-use-167217bec15c9c7aa70ba2a3dc9c689b3cd91872.tar.gz
drakx-backup-do-not-use-167217bec15c9c7aa70ba2a3dc9c689b3cd91872.tar.bz2
drakx-backup-do-not-use-167217bec15c9c7aa70ba2a3dc9c689b3cd91872.tar.xz
drakx-backup-do-not-use-167217bec15c9c7aa70ba2a3dc9c689b3cd91872.zip
import new version of dietlibc
Diffstat (limited to 'mdk-stage1/dietlibc/dietfeatures.h')
-rw-r--r--mdk-stage1/dietlibc/dietfeatures.h28
1 files changed, 27 insertions, 1 deletions
diff --git a/mdk-stage1/dietlibc/dietfeatures.h b/mdk-stage1/dietlibc/dietfeatures.h
index 979b40d62..4552599ea 100644
--- a/mdk-stage1/dietlibc/dietfeatures.h
+++ b/mdk-stage1/dietlibc/dietfeatures.h
@@ -1,8 +1,11 @@
+#ifndef _DIETFEATURES_H
+#define _DIETFEATURES_H
/* feel free to comment some of these out to reduce code size */
//#define WANT_FLOATING_POINT_IN_PRINTF
//#define WANT_FLOATING_POINT_IN_SCANF
+#define WANT_CHARACTER_CLASSES_IN_SCANF
#define WANT_NULL_PRINTF
#define SLASH_PROC_OK
@@ -10,7 +13,30 @@
// #define WANT_BUFFERED_STDIO
/* use errno_location instead of errno */
-// #define WANT_THREAD_SAVE
+// #define WANT_THREAD_SAFE
+
+/* make the startcode, etc. dynamic aware */
+/* #undef WANT_DYNAMIC */
/* do you want smaller or faster string routines? */
+/* #define WANT_FASTER_STRING_ROUTINES */
+
+/* do you want ungetc? makes fgetc more complex */
+// #define WANT_UNGETC
+
+// #define WANT_LINKER_WARNINGS
+
+/* you need to define this if you want to run your programs with large
+ * file support on kernel 2.2 or 2.4 */
+// #define WANT_LARGEFILE_BACKCOMPAT
+
+/* do you want localtime(3) to read /etc/localtime?
+ * Needed for daylight saving time etc. */
+// #define WANT_TZFILE_PARSER
+
+/* stop uncommenting here ;-) */
+#ifndef WANT_FASTER_STRING_ROUTINES
#define WANT_SMALL_STRING_ROUTINES
+#endif
+
+#endif