Last change
on this file was 405, checked in by bird, 22 years ago |
* empty log message *
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
662 bytes
|
Line | |
---|
1 | /* $Id: empty.c 405 2003-07-17 01:19:17Z bird $
|
---|
2 | *
|
---|
3 | * Simple LIBC program which includes file io and some other stuff.
|
---|
4 | *
|
---|
5 | * InnoTek Systemberatung GmbH confidential
|
---|
6 | *
|
---|
7 | * Copyright (c) 2003 InnoTek Systemberatung GmbH
|
---|
8 | * Author: knut st. osmundsen <bird-srcspam@anduin.net>
|
---|
9 | *
|
---|
10 | * All Rights Reserved
|
---|
11 | *
|
---|
12 | */
|
---|
13 |
|
---|
14 | #include <stdio.h>
|
---|
15 | #include <string.h>
|
---|
16 |
|
---|
17 | int main(int argc, const char * const * argv)
|
---|
18 | {
|
---|
19 | // FILE *phFile;
|
---|
20 |
|
---|
21 | /* The compiler doesn't know that this is always true. */
|
---|
22 | if (argc)
|
---|
23 | return 0;
|
---|
24 |
|
---|
25 | /* point of this section is to drag in the init and termination
|
---|
26 | * routines of this pretty common code. */
|
---|
27 | // phFile = fopen(argv[0], "r");
|
---|
28 | // fclose(phFile);
|
---|
29 | return 1;
|
---|
30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.