OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: Dale Rahn (drahncvs.openbsd.org)
Date: Wed Mar 21 2001 - 07:51:58 CST

  • Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    CVSROOT: /cvs
    Module name: src
    Changes by: drahncvs.openbsd.org 2001/03/21 06:51:58

    Modified files:
            sys/arch/powerpc/include: va-ppc.h

    Log message:
    __va_list is specified differently with the powerpc ABI than it is on
    other platforms, the list is a pointer, thus va_copy should allocate data
    (using alloca) for that pointer before copying the contents of the data.
    This allows several gnu programs to build and run correctly which insist
    on multiply parsing the vararg/stdarg data passed to a function.