view dmd2/gnuc.h @ 1407:9a049fd1a014

Let TargetABI::passByValue() know when a parameter is byref (either explicitly or because it's a static array) by giving it the pointer type instead of the type itself. This fixes Derelict compilation on x86-64, where the ABI wasn't expecting a static array to be passed in at all.
author Frits van Bommel <fvbommel wxs.nl>
date Fri, 22 May 2009 00:19:54 +0200
parents f04dde6e882c
children
line wrap: on
line source


#ifndef _GNUC_H
#define _GNUC_H 1

int memicmp(const char *s1, const char *s2, int n);
int stricmp(const char *s1, const char *s2);

#endif