Changeset f7428b1 in buchla-68k for include/stdarg.h


Ignore:
Timestamp:
07/10/2017 01:26:59 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
5fa506d
Parents:
c3aee8a
Message:

Started to rework include files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/stdarg.h

    rc3aee8a rf7428b1  
    66*/
    77
     8#pragma once
     9#include "stdint.h"
     10
    811typedef int8_t  *va_list;
    912
     
    1114#define va_arg(ap, type)        (ap += sizeof(type), ap[-1])
    1215#define va_end(ap)
    13 
Note: See TracChangeset for help on using the changeset viewer.