Commit 0164332a authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Remove leading _ from include guard

parent 18b01764
#ifndef _HIREDIS_ADDRESS_H
#define _HIREDIS_ADDRESS_H 1
#ifndef HIREDIS_ADDRESS_H
#define HIREDIS_ADDRESS_H 1
#include <netinet/in.h>
#include <sys/un.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_CONTEXT_H
#define _HIREDIS_CONTEXT_H 1
#ifndef HIREDIS_CONTEXT_H
#define HIREDIS_CONTEXT_H 1
#include <stdarg.h>
......
#ifndef _HIREDIS_FD_H
#define _HIREDIS_FD_H 1
#ifndef HIREDIS_FD_H
#define HIREDIS_FD_H 1
#include "address.h"
#include "common.h"
......
#ifndef _HIREDIS_FORMAT_H
#define _HIREDIS_FORMAT_H 1
#ifndef HIREDIS_FORMAT_H
#define HIREDIS_FORMAT_H 1
#include <stdarg.h>
......
#ifndef _HIREDIS_HANDLE_H
#define _HIREDIS_HANDLE_H 1
#ifndef HIREDIS_HANDLE_H
#define HIREDIS_HANDLE_H 1
#include <sys/time.h>
......
#ifndef _HIREDIS_OBJECT_H
#define _HIREDIS_OBJECT_H 1
#ifndef HIREDIS_OBJECT_H
#define HIREDIS_OBJECT_H 1
#include "parser.h"
......
#ifndef _HIREDIS_PARSER_H
#define _HIREDIS_PARSER_H 1
#ifndef HIREDIS_PARSER_H
#define HIREDIS_PARSER_H 1
#include <stdint.h>
......
#ifndef _HIREDIS_REQUEST_H
#define _HIREDIS_REQUEST_H 1
#ifndef HIREDIS_REQUEST_H
#define HIREDIS_REQUEST_H 1
#include <stddef.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