Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Unified Diff: third_party/cython/src/Cython/Includes/libc/limits.pxd

Issue 385073004: Adding cython v0.20.2 in third-party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference cython dev list thread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/cython/src/Cython/Includes/libc/limits.pxd
diff --git a/third_party/cython/src/Cython/Includes/libc/limits.pxd b/third_party/cython/src/Cython/Includes/libc/limits.pxd
new file mode 100644
index 0000000000000000000000000000000000000000..3951dde35b166df49f5057eef1b45541169a61a8
--- /dev/null
+++ b/third_party/cython/src/Cython/Includes/libc/limits.pxd
@@ -0,0 +1,29 @@
+# 5.2.4.2.1 Sizes of integer types <limits.h>
+
+cdef extern from "limits.h":
+
+ enum: CHAR_BIT
+ enum: MB_LEN_MAX
+
+ enum: CHAR_MIN
+ enum: CHAR_MAX
+
+ enum: SCHAR_MIN
+ enum: SCHAR_MAX
+ enum: UCHAR_MAX
+
+ enum: SHRT_MIN
+ enum: SHRT_MAX
+ enum: USHRT_MAX
+
+ enum: INT_MIN
+ enum: INT_MAX
+ enum: UINT_MAX
+
+ enum: LONG_MIN
+ enum: LONG_MAX
+ enum: ULONG_MAX
+
+ enum: LLONG_MIN
+ enum: LLONG_MAX
+ enum: ULLONG_MAX
« no previous file with comments | « third_party/cython/src/Cython/Includes/libc/float.pxd ('k') | third_party/cython/src/Cython/Includes/libc/locale.pxd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698