https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 7ca187798617d392946718a9a0b0464af2b12ad3 authored by g3gg0 on 07 February 2014, 20:03:55 UTC
Close branch clean_mlvrec_display
Tip revision: 7ca1877
stub.h
/*
 * Copyright (C) 2013 Magic Lantern Team
 *
 * This file is part of Magic Lantern.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 */

#ifndef __STUB_H__
#define __STUB_H__

#define NSTUB(addr,name) \
	.global name; \
	.extern name; \
	name = addr

#endif /* __STUB_H__ */
back to top