xref: /aoo41x/main/tools/workben/helloworld.c (revision fe69567b)
1*fe69567bSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*fe69567bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*fe69567bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*fe69567bSAndrew Rist  * distributed with this work for additional information
6*fe69567bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*fe69567bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*fe69567bSAndrew Rist  * "License"); you may not use this file except in compliance
9*fe69567bSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*fe69567bSAndrew Rist  *
11*fe69567bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*fe69567bSAndrew Rist  *
13*fe69567bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*fe69567bSAndrew Rist  * software distributed under the License is distributed on an
15*fe69567bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*fe69567bSAndrew Rist  * KIND, either express or implied.  See the License for the
17*fe69567bSAndrew Rist  * specific language governing permissions and limitations
18*fe69567bSAndrew Rist  * under the License.
19*fe69567bSAndrew Rist  *
20*fe69567bSAndrew Rist  *************************************************************/
21*fe69567bSAndrew Rist 
22*fe69567bSAndrew Rist 
23cdf0e10cSrcweir #include <stdlib.h>
24cdf0e10cSrcweir #include <io.h>
main()25cdf0e10cSrcweir main( )
26cdf0e10cSrcweir {
27cdf0e10cSrcweir 
28cdf0e10cSrcweir   printf( "%s\n", "hello world");
29cdf0e10cSrcweir }
30