Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1763 → Rev 1685

/boot/trunk/arch/mips32/loader/printf.h/types.h
26,10 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
#ifndef TYPES_H__
#define TYPES_H__
#ifndef __PRINTF_H__
#define __PRINTF_H__
 
#include "../../../generic/types.h"
#define INT8 1
#define INT16 2
#define INT32 4
#define INT64 8
 
typedef signed char __s8;
 
41,4 → 44,9
typedef __u32 __address;
typedef __u32 __native;
 
typedef char *char_ptr;
 
void puts(const char *str);
void printf(const char *fmt, ...);
 
#endif