mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
* Pedantic C compilers want an extern declaration separate from initialization * Remove duplicate definitions for fns in initdspdefs.h from display.h * Remove misleading comments on structure member offsets and reorder to minimize padding
7 lines
103 B
Bash
Executable File
7 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
cat <<EOF
|
|
#include <time.h>
|
|
extern const time_t MDate;
|
|
const time_t MDate = $(date +%s);
|
|
EOF
|