Files
build/tools/lsd/common.h
The Android Open Source Project 88b607994a auto import from //depot/cupcake/@135843
2009-03-03 19:28:42 -08:00

13 lines
273 B
C

#ifndef COMMON_H
#define COMMON_H
#include <libelf.h>
#include <elf.h>
#define unlikely(expr) __builtin_expect (expr, 0)
#define likely(expr) __builtin_expect (expr, 1)
#define MIN(a,b) ((a)<(b)?(a):(b)) /* no side effects in arguments allowed! */
#endif/*COMMON_H*/