buffer: change #include order

huangjun <hjwsm1989@gmail.com> reports that this fixes the compilation on
CentOS5.

Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
Sage Weil 2013-08-06 18:36:00 -07:00
parent 6cbe0f021f
commit b2515b9e0b

View File

@ -16,17 +16,18 @@
#define CEPH_BUFFER_H
#if defined(__linux__)
#include <stdlib.h>
#include <linux/types.h>
#elif defined(__FreeBSD__)
#include <sys/types.h>
#include "include/inttypes.h"
#include <stdlib.h>
#endif
#ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 600
#endif
#include <stdlib.h>
#include <stdio.h>
#ifdef DARWIN