1
0
Fork 0
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:
Charles Kerr 2008-11-30 01:43:18 +00:00
parent bffb4e6d4c
commit 66beb8db29
3 changed files with 13 additions and 0 deletions

View file

@ -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.
*

View file

@ -1,3 +1,7 @@
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
#ifndef JSON_PARSER_H
#define JSON_PARSER_H

View file

@ -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. */