6502/vbcc/targets/ppc-morphos/include/proto/random.h
2022-05-12 21:36:39 +09:30

28 lines
497 B
C

#ifndef _PROTO_RANDOM_H
#define _PROTO_RANDOM_H
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#if !defined(CLIB_RANDOM_PROTOS_H) && !defined(__GNUC__)
#include <clib/random_protos.h>
#endif
#ifndef __NOLIBBASE__
extern struct Library *RandomBase;
#endif
#ifdef __GNUC__
#ifdef __AROS__
#include <defines/random.h>
#else
#include <inline/random.h>
#endif
#elif defined(__VBCC__)
#include <inline/random_protos.h>
#else
#include <pragma/random_lib.h>
#endif
#endif /* _PROTO_RANDOM_H */