forked from gary/BCU
2
0
Fork 0
BCU/library/rl_flashfs/absacc.h

15 lines
335 B
C

/* absacc.h: header file that allows absolute variable location at C level */
/* Copyright 2006-2007 ARM Limited. All rights reserved. */
/* version 1.01 */
#ifndef __at
#define __at(_addr) __attribute__ ((at(_addr)))
#endif
#ifndef __section
#define __section(_name) __attribute__ ((section(_name)))
#endif