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,18 +27,7 @@
|
||||
|
||||
#include "basic.h"
|
||||
|
||||
LOGICAL m_letter(
|
||||
#if defined(M_PROTO)
|
||||
M_WCHAR c
|
||||
#endif
|
||||
) ;
|
||||
|
||||
#if defined(M_PROTO)
|
||||
LOGICAL m_letter(M_WCHAR c)
|
||||
#else
|
||||
LOGICAL m_letter(c)
|
||||
M_WCHAR c ;
|
||||
#endif
|
||||
{
|
||||
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) return(TRUE) ;
|
||||
return(FALSE) ;
|
||||
|
||||
Reference in New Issue
Block a user