Commit 16ea0909 authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Prefix header guards with _

parent 2b61fd1a
#ifndef HIREDIS_ADDRESS_H
#define HIREDIS_ADDRESS_H 1
#ifndef _HIREDIS_ADDRESS_H
#define _HIREDIS_ADDRESS_H 1
/* struct sockaddr_(in|in6|un) */
#include <netinet/in.h>
......
#ifndef HIREDIS_COMMON_H
#define HIREDIS_COMMON_H 1
#ifndef _HIREDIS_COMMON_H
#define _HIREDIS_COMMON_H 1
#define REDIS_OK 0
#define REDIS_ESYS -1
......
#ifndef HIREDIS_FD_H
#define HIREDIS_FD_H 1
#ifndef _HIREDIS_FD_H
#define _HIREDIS_FD_H 1
#include "common.h"
#include "address.h"
......
#ifndef __HIREDIS_FMACRO_H
#define __HIREDIS_FMACRO_H
#ifndef _HIREDIS_FMACRO_H
#define _HIREDIS_FMACRO_H 1
#if !defined(_BSD_SOURCE)
#define _BSD_SOURCE
......
#ifndef HIREDIS_REQUEST_H
#define HIREDIS_REQUEST_H 1
#ifndef _HIREDIS_REQUEST_H
#define _HIREDIS_REQUEST_H 1
#include <stddef.h> /* offsetof */
#include "ngx-queue.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment