dthelp: Remove define M_PROTO that was always turned on (for all platforms) that enabled ANSI not K&R function prototypes

This commit is contained in:
Peter Howkins
2018-06-22 20:40:47 +01:00
parent de7e0dfcdd
commit 725b02e6bf
218 changed files with 2975 additions and 14075 deletions

View File

@@ -27,17 +27,9 @@
#include <string.h>
#include "basic.h"
char *m_itoa(
#if defined(M_PROTO)
int n, char *s
#endif
) ;
char *m_itoa(int n, char *s);
void reverse(
#if defined(M_PROTO)
char *s
#endif
) ;
void reverse(char *s);
char *m_itoa(n, s) /* convert n to characters in s */
char s[];