Fix variadic function typedef to be legal C

This commit is contained in:
rozlette
2020-04-28 15:11:14 -05:00
parent 01c86ec621
commit 5687f3741a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#ifndef _ULTRAERROR_H_
#define _ULTRAERROR_H_
typedef void (*OSErrorHandler)(... /* ECOFF does not store param types */);
typedef void (*OSErrorHandler)(/* ECOFF does not store param types */);
#endif