From 51dfcb4bb7613ed164952712d9a5235a7b833cde Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 1 Jan 2015 20:27:54 +0000 Subject: py: Move to guarded includes, everywhere in py/ core. Addresses issue #1022. --- py/bc0.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'py/bc0.h') diff --git a/py/bc0.h b/py/bc0.h index 0b1091759..42b8b6280 100644 --- a/py/bc0.h +++ b/py/bc0.h @@ -23,6 +23,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#ifndef __MICROPY_INCLUDED_PY_BC0_H__ +#define __MICROPY_INCLUDED_PY_BC0_H__ // Micro Python byte-codes. // The comment at the end of the line (if it exists) tells the arguments to the byte-code. @@ -118,3 +120,5 @@ #define MP_BC_STORE_FAST_MULTI (0xc0) // + N(16) #define MP_BC_UNARY_OP_MULTI (0xd0) // + op(5) #define MP_BC_BINARY_OP_MULTI (0xd5) // + op(35) + +#endif // __MICROPY_INCLUDED_PY_BC0_H__ -- cgit v1.2.3