mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
(libT) add the #include guards to "private" third party header files.
This commit is contained in:
parent
bffb4e6d4c
commit
66beb8db29
3 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
#ifndef CONVERT_UNICODE_H
|
||||
#define CONVERT_UNICODE_H
|
||||
|
||||
#ifndef __TRANSMISSION__
|
||||
#error only libtransmission should #include this header.
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Copyright 2001-2004 Unicode, Inc.
|
||||
*
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
#ifndef __TRANSMISSION__
|
||||
#error only libtransmission should #include this header.
|
||||
#endif
|
||||
|
||||
#ifndef JSON_PARSER_H
|
||||
#define JSON_PARSER_H
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
#ifndef __TRANSMISSION__
|
||||
#error only libtransmission should #include this header.
|
||||
#endif
|
||||
|
||||
|
||||
/* File ggets.h - goodgets is a safe alternative to gets */
|
||||
/* By C.B. Falconer. Public domain 2002-06-22 */
|
||||
/* attribution appreciated. */
|
||||
|
|
Loading…
Reference in a new issue