~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to sfxstub.c

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: sfxstub.c,v 1.2 2003/06/22 11:12:28 andrew_belov Exp $
 
3
 * ---------------------------------------------------------------------------
 
4
 * This is a portable version of the SFX stub.
 
5
 *
 
6
 */
 
7
 
 
8
#include "arj.h"
 
9
 
 
10
DEBUGHDR(__FILE__)                      /* Debug information block */
 
11
 
 
12
static char strform[]="%s";
 
13
 
 
14
/* Main routine */
 
15
 
 
16
int main()
 
17
{
 
18
 printf(strform, M_SFXSTUB_BANNER);
 
19
 printf(strform, M_SFXSTUB_BLURB_1);
 
20
 printf(strform, M_SFXSTUB_BLURB_2);
 
21
 return(0);
 
22
}