Subversion Repositories HelenOS-historic

Rev

Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1702 Rev 1708
Line 40... Line 40...
40
/**
40
/**
41
 *
41
 *
42
 * Calculate absolute address of function
42
 * Calculate absolute address of function
43
 * referenced by fptr pointer.
43
 * referenced by fptr pointer.
44
 *
44
 *
45
 * @param fptr Function pointer.
45
 * @param f Function pointer.
46
 *
46
 *
47
 */
47
 */
48
#define FADDR(f)     (*((__address *)(f)));
48
#define FADDR(f)     (*((__address *)(f)));
49
 
49
 
50
#endif
50
#endif