View | Details | Raw Unified | Return to issue 13368
Collapse All | Expand All

(-)bootstrp/rscdep.cxx (-1 / +1 lines)
Lines 338-344 Link Here
338
 * it's too sad that getopt() is not available everywhere
338
 * it's too sad that getopt() is not available everywhere
339
 * note: this is not a full POSIX conforming getopt()
339
 * note: this is not a full POSIX conforming getopt()
340
 */
340
 */
341
simple_getopt(int argc, char *argv[], const char *optstring)
341
int simple_getopt(int argc, char *argv[], const char *optstring)
342
{
342
{
343
    char *arg = argv[optind];
343
    char *arg = argv[optind];
344
344
(-)inc/link.hxx (-2 / +2 lines)
Lines 83-89 Link Here
83
    long Class::Method( ArgType ArgName )
83
    long Class::Method( ArgType ArgName )
84
84
85
#define IMPL_STUB(Class, Method, ArgType) \
85
#define IMPL_STUB(Class, Method, ArgType) \
86
    long __EXPORT Class##::LinkStub##Method( void* pThis, void* pCaller) \
86
    long __EXPORT Class::LinkStub##Method( void* pThis, void* pCaller) \
87
    { \
87
    { \
88
        return ((Class*)pThis )->Method( (ArgType)pCaller ); \
88
        return ((Class*)pThis )->Method( (ArgType)pCaller ); \
89
    }
89
    }
Lines 92-98 Link Here
92
    long __EXPORT Class::Method( Class* pThis, ArgType ArgName )
92
    long __EXPORT Class::Method( Class* pThis, ArgType ArgName )
93
93
94
#define LINK( Inst, Class, Member ) \
94
#define LINK( Inst, Class, Member ) \
95
    Link( (Class*)Inst, (PSTUB)&Class##::LinkStub##Member )
95
    Link( (Class*)Inst, (PSTUB)&Class::LinkStub##Member )
96
96
97
#define STATIC_LINK( Inst, Class, Member ) \
97
#define STATIC_LINK( Inst, Class, Member ) \
98
    Link( (Class*)Inst, (PSTUB)&Class::Member )
98
    Link( (Class*)Inst, (PSTUB)&Class::Member )
(-)source/generic/supd.cxx (-1 / +1 lines)
Lines 68-71 Link Here
68
unsigned getSUPD()
68
unsigned getSUPD()
69
{
69
{
70
	return (unsigned)SUPD;
70
	return (unsigned)SUPD;
71
}
71
}

Return to issue 13368