Improve portability to really outmoded compilers
A few modernisms have crept in: * Trailing comma in enum definition (commit71320ed
, v4.3.10) * // comment (commit265e71e
, v4.3.11) * <stdint.h> (commit9102ecc
, v4.3.31) MSC actually chokes on this one. Avoid them. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
7f68f37433
commit
341b1b4d15
3 changed files with 9 additions and 6 deletions
|
@ -64,7 +64,7 @@ enum {
|
|||
enum {
|
||||
UPD_DEMAND_NONE, /* no demand updates */
|
||||
UPD_DEMAND_SCHED, /* scheduled updates are demand updates */
|
||||
UPD_DEMAND_ASYNC, /* zdone triggers unscheduled update */
|
||||
UPD_DEMAND_ASYNC /* zdone triggers unscheduled update */
|
||||
};
|
||||
|
||||
struct keymatch {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue