mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-02 04:23:34 +00:00
13 lines
295 B
C
13 lines
295 B
C
|
#ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_OP_H_
|
||
|
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_OP_H_
|
||
|
|
||
|
/* Rich comparison opcodes */
|
||
|
#define Py_LT 0
|
||
|
#define Py_LE 1
|
||
|
#define Py_EQ 2
|
||
|
#define Py_NE 3
|
||
|
#define Py_GT 4
|
||
|
#define Py_GE 5
|
||
|
|
||
|
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_OP_H_ */
|