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:
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user