1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +00:00
Nick Briggs 77957d421a
fix some compiler warnings (#423)
* 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
2022-07-20 10:18:59 -07:00

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