-static void init_date_time_macros (void) {
-
- char *timep, *buf, *name, temp[3] = { 0 };
- time_t now;
-
- struct hashtab_name *key;
- struct macro *m;
-
- time (&now);
- timep = ctime (&now);
-
- name = xstrdup ("__TIME__");
-
- if ((key = hashtab_alloc_name (name))) {
-
- buf = xmalloc (11);
- sprintf (buf, "\"%.8s\"", timep + 11);;
-
- m = xmalloc (sizeof (*m));
- m->type = MACRO_BUILTIN;
-
- m->name = name;
- m->value = buf;
-
- push_macro (key, m);
-
- }
-
- name = xstrdup ("__DATE__");
-
- if ((key = hashtab_alloc_name (name))) {
-
- sprintf (temp, "%.2s", timep + 8);
- buf = xmalloc (14);
-
- if (atoi (temp) < 10) {
- sprintf (buf, "\"%.3s %.1s %.4s\"", timep + 4, timep + 9, timep + 20);
- } else {
- sprintf (buf, "\"%.3s %.2s %.4s\"", timep + 4, timep + 8, timep + 20);
- }
-
- m = xmalloc (sizeof (*m));
- m->type = MACRO_BUILTIN;
-
- m->name = name;
- m->value = buf;
-
- push_macro (key, m);
-
- }
-
-}
-