"Fossies" - the Fresh Open Source Software Archive 
Member "zsync-0.6.2/zsglobal.h" (16 Sep 2010, 902 Bytes) of package /linux/privat/old/zsync-0.6.2.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "zsglobal.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 * zsync - client side rsync over http
3 * Copyright (C) 2004,2005,2007,2009 Colin Phipps <cph@moria.org.uk>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the Artistic License v2 (see the accompanying
7 * file COPYING for the full license terms), or, at your option, any later
8 * version of the same license.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * COPYING file for details.
14 */
15
16 #ifndef ZSGLOBAL_H
17 #define ZSGLOBAL_H
18
19
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 #if defined(__GNUC__) && defined (__OpenBSD__)
25 # define ZS_DECL_BOUNDED(x,y,z) __attribute__((__bounded__(x,y,z)))
26 #else
27 # define ZS_DECL_BOUNDED(x,y,z)
28 #endif /* ZS_DECL_BOUNDED */
29
30 #endif