mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:13:40 +03:00
Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H and
HAVE_PROCESS_H added for all except scc.
This commit is contained in:
parent
c14a84e6f2
commit
414c57d138
4 changed files with 39 additions and 4 deletions
11
lib/setup.h
11
lib/setup.h
|
|
@ -173,6 +173,17 @@ typedef unsigned char bool;
|
|||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Salford-C cludge section (mostly borrowed from wxWidgets).
|
||||
*/
|
||||
#ifdef __SALFORDC__
|
||||
#pragma suppress 353 /* Possible nested comments */
|
||||
#pragma suppress 593 /* Define not used */
|
||||
#pragma suppress 61 /* enum has no name */
|
||||
#pragma suppress 106 /* unnamed, unused parameter */
|
||||
#include <clib.h>
|
||||
#endif
|
||||
|
||||
#if defined(CURLDEBUG) && defined(HAVE_ASSERT_H)
|
||||
#define curlassert(x) assert(x)
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue