INTEGRATION: CWS jl83 (1.1.2); FILE ADDED

2007/11/30 15:16:30 jl 1.1.2.1: #i84019#
This commit is contained in:
Vladimir Glazounov 2007-12-07 09:24:30 +00:00
parent 8416507466
commit d423511cee

View file

@ -0,0 +1,54 @@
/*************************************************************************
*
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: hello.c,v $
*
* $Revision: 1.2 $
*
* last change: $Author: vg $ $Date: 2007-12-07 10:24:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_desktop.hxx"
#include <stdio.h>
int main(int argc , char** argv, char** envp)
{
//prevent warning about unused parameters
//we need to provide parameter names in C
argc = argc;
argv = argv;
envp = envp;
fprintf(stdout,"Hello world!\n");
return 0;
}