Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 79919
Collapse All | Expand All

(-)cmdoptns.cpp.orig (-3 / +10 lines)
Lines 348-356 Link Here
348
#ifdef	__KCC
348
#ifdef	__KCC
349
		co_list = new (CommandOption **)[ocnt];
349
		co_list = new (CommandOption **)[ocnt];
350
		opt_list = new (CommandOption **)[ccnt];
350
		opt_list = new (CommandOption **)[ccnt];
351
#else
351
#endif
352
		co_list = new (CommandOption *)[ocnt];
352
#if defined(__GNUC__) 
353
		opt_list = new (CommandOption *)[ccnt];
353
 #if (__GNUC__>=3) && (__GNUC_MINOR__>=4)
354
		/* removed the parethesis below here for GCC 3.4.3 */
355
		co_list = new CommandOption *[ocnt];
356
		opt_list = new CommandOption *[ccnt];
357
 #else
358
                co_list = new (CommandOption *)[ocnt];
359
                opt_list = new (CommandOption *)[ccnt];
360
 #endif
354
#endif
361
#endif
355
		long_options = new option[ccnt+1];
362
		long_options = new option[ccnt+1];
356
		optstring = new char[ 2*ccnt+2 ];
363
		optstring = new char[ 2*ccnt+2 ];

Return to bug 79919