-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix warning errors of the libyaml binding
Make the build work without any warnings. The cython and C yaml types were differing in definition and that's no good. Signed-off-by: Pantelis Antoniou <[email protected]>
- Loading branch information
1 parent
b3d2d67
commit 82db283
Showing
3 changed files
with
75 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
FWIW: the C99 standard says:
Regardless, can't you just do
from libc.string cimport memcpy
etc. and use the definitions shipping with Cython (see https://github.com/cython/cython/tree/master/Cython/Includes/libc) instead of defining your own versions here?