Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: xz/src/common/tuklib_progname.h

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « xz/src/common/tuklib_physmem.c ('k') | xz/src/common/tuklib_progname.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file tuklib_progname.h
4 /// \brief Program name to be displayed in messages
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #ifndef TUKLIB_PROGNAME_H
14 #define TUKLIB_PROGNAME_H
15
16 #include "tuklib_common.h"
17 #include <errno.h>
18
19 TUKLIB_DECLS_BEGIN
20
21 #if HAVE_DECL_PROGRAM_INVOCATION_NAME
22 # define progname program_invocation_name
23 #else
24 # define progname TUKLIB_SYMBOL(tuklib_progname)
25 extern char *progname;
26 #endif
27
28 #define tuklib_progname_init TUKLIB_SYMBOL(tuklib_progname_init)
29 extern void tuklib_progname_init(char **argv);
30
31 TUKLIB_DECLS_END
32 #endif
OLDNEW
« no previous file with comments | « xz/src/common/tuklib_physmem.c ('k') | xz/src/common/tuklib_progname.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698