dtcm: Always use ANSI function prototypes

This commit is contained in:
Peter Howkins
2020-11-29 01:55:09 +00:00
parent c62a5049ed
commit d98b2c4c34
60 changed files with 890 additions and 953 deletions

View File

@@ -31,16 +31,15 @@
#ifndef _INSERT_H
#define _INSERT_H
#include "ansi_c.h"
#include "cm.h"
#include "cmscalendar.h"
extern CSA_return_code _DtCmsInsertEntry P((
extern CSA_return_code _DtCmsInsertEntry(
_DtCmsCalendar *cal,
cms_entry *entry));
cms_entry *entry);
extern CSA_return_code _DtCmsInsertEntryAndLog P((
extern CSA_return_code _DtCmsInsertEntryAndLog(
_DtCmsCalendar *cal,
cms_entry *entry));
cms_entry *entry);
#endif