~ubuntu-branches/ubuntu/wily/sup/wily

« back to all changes in this revision

Viewing changes to quit.c

  • Committer: Bazaar Package Importer
  • Author(s): Jochen Friedrich
  • Date: 2006-11-02 15:03:30 UTC
  • mfrom: (1.1.1 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20061102150330-yt4yavw4rj1hz8yj
Tags: 20060803-2
Fix CFLAGS, so libwrap is built into sup again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      $NetBSD: quit.c,v 1.5 2002/07/10 20:19:41 wiz Exp $     */
 
2
 
1
3
/*
2
4
 * Copyright (c) 1991 Carnegie Mellon University
3
5
 * All Rights Reserved.
4
 
 * 
 
6
 *
5
7
 * Permission to use, copy, modify and distribute this software and its
6
8
 * documentation is hereby granted, provided that both the copyright
7
9
 * notice and this permission notice appear in all copies of the
35
37
 *
36
38
 **********************************************************************
37
39
 * HISTORY
38
 
 * $Log: quit.c,v $
39
 
 * Revision 1.1.1.1  1993/08/21  00:46:33  jkh
40
 
 * Current sup with compression support.
41
 
 *
42
 
 * Revision 1.1.1.1  1993/05/21  14:52:17  cgd
43
 
 * initial import of CMU's SUP to NetBSD
44
 
 *
45
40
 * Revision 1.2  88/12/13  13:52:41  gm0w
46
41
 *      Rewritten to use varargs.
47
42
 *      [88/12/13            gm0w]
48
 
 * 
 
43
 *
49
44
 **********************************************************************
50
45
 */
51
46
 
52
47
#include <stdio.h>
53
 
#include <stdarg.h>
 
48
#include "supcdefs.h"
 
49
#include "supextern.h"
54
50
 
55
 
void quit (int status, char *fmt, ...)
 
51
void
 
52
quit(int status, char *fmt, ...)
56
53
{
57
54
        va_list args;
58
55