~ubuntu-branches/ubuntu/wily/signing-party/wily

« back to all changes in this revision

Viewing changes to keyanalyze/pgpring/extlib.c

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2009-02-23 21:37:20 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090223213720-98hkq51ynr3oaic7
Tags: 1.1-2
Fix build error when only building the binary package
by fixing the build-arch target (Closes: #516804).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
 
3
 * 
 
4
 *     This program is free software; you can redistribute it
 
5
 *     and/or modify it under the terms of the GNU General Public
 
6
 *     License as published by the Free Software Foundation; either
 
7
 *     version 2 of the License, or (at your option) any later
 
8
 *     version.
 
9
 * 
 
10
 *     This program is distributed in the hope that it will be
 
11
 *     useful, but WITHOUT ANY WARRANTY; without even the implied
 
12
 *     warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 
13
 *     PURPOSE.  See the GNU General Public License for more
 
14
 *     details.
 
15
 * 
 
16
 *     You should have received a copy of the GNU General Public
 
17
 *     License along with this program; if not, write to the Free
 
18
 *     Software Foundation, Inc., 59 Temple Place - Suite 330,
 
19
 *     Boston, MA  02111, USA.
 
20
 */ 
 
21
 
 
22
/* 
 
23
 * Some simple dummies, so we can reuse the routines from
 
24
 * lib.c in external programs.
 
25
 */
 
26
 
 
27
#include <stdlib.h>
 
28
 
 
29
#define WHERE
 
30
#define _EXTLIB_C
 
31
 
 
32
#include "lib.h"
 
33
 
 
34
void (*mutt_error) (const char *, ...) = mutt_nocurses_error;
 
35
 
 
36
void mutt_exit (int code)
 
37
{
 
38
  exit (code);
 
39
}
 
40