Skip to content

Commit

Permalink
Include assert.h after Python.h
Browse files Browse the repository at this point in the history
Fixes redefinition of _POSIX_C_SOURCE macro.
  • Loading branch information
pietern committed Jun 23, 2014
1 parent 29549b8 commit 3696435
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/reader.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <assert.h>
#include "reader.h"

#include <assert.h>

static void Reader_dealloc(hiredis_ReaderObject *self);
static int Reader_init(hiredis_ReaderObject *self, PyObject *args, PyObject *kwds);
static PyObject *Reader_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
Expand Down

0 comments on commit 3696435

Please sign in to comment.