Changeset 3533


Ignore:
Timestamp:
Aug 23, 2007, 2:28:04 AM (18 years ago)
Author:
bird
Message:

hacking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrBase.h

    r3525 r3533  
    3434/*
    3535 * kLdr depend on size_t, [u]intNN_t, [u]intptr_t and some related constants.
    36  * If KLDR_ALREADY_INCLUDED_STD_TYPES is defined, these has already been defined.
     36 * If KLDR_ALREADY_INCLUDED_STD_TYPES or KCOMMON_ALREADY_INCLUDED_STD_TYPES
     37 * is defined, these has already been defined.
    3738 */
    38 #ifndef KLDR_ALREADY_INCLUDED_STD_TYPES
     39#if !defined(KLDR_ALREADY_INCLUDED_STD_TYPES) && !defined(KCOMMON_ALREADY_INCLUDED_STD_TYPES)
     40# define KCOMMON_ALREADY_INCLUDED_STD_TYPES 1
    3941# include <sys/types.h>
    4042# include <stddef.h>
     
    7375#  include <stdint.h>
    7476# endif
    75 #endif /* !KLDR_ALREADY_INCLUDED_STD_TYPES */
    76 
     77#endif /* !KLDR_ALREADY_INCLUDED_STD_TYPES && !KCOMMON_ALREADY_INCLUDED_STD_TYPES */
    7778
    7879/** Get the minimum of two values. */
Note: See TracChangeset for help on using the changeset viewer.