From 92cd3c0174a9fecc7904c721b9f026dcc6a47c58 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 30 Jun 2008 07:33:27 +0200 Subject: [PATCH] Reorder some declarations It's better to have the 'system' defs before our user defs. --- xattr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xattr.c b/xattr.c index 3930144..7cfa8dc 100644 --- a/xattr.c +++ b/xattr.c @@ -3,10 +3,6 @@ #include #include -/* the estimated (startup) attribute buffer size in - multi-operations */ -#define ESTIMATE_ATTR_SIZE 256 - /* Compatibility with python 2.4 regarding python size type (PEP 353) */ #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) typedef int Py_ssize_t; @@ -14,6 +10,10 @@ typedef int Py_ssize_t; #define PY_SSIZE_T_MIN INT_MIN #endif +/* the estimated (startup) attribute buffer size in + multi-operations */ +#define ESTIMATE_ATTR_SIZE 256 + typedef enum {T_FD, T_PATH, T_LINK} target_e; typedef struct { -- 2.39.2