diff options
author | Christopher Faylor <me@cgf.cx> | 2003-08-06 01:40:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-08-06 01:40:12 +0000 |
commit | 4b154cc1b3b5c73e719ab505a8fcb7ae7b5113ae (patch) | |
tree | 74552e797798985fd06fed387397956bb5a4484a /winsup/cygwin/crt0.c | |
parent | 4423d92489cd1a3bbcd1657bfbdef2d8a4cbf71f (diff) | |
download | cygnal-4b154cc1b3b5c73e719ab505a8fcb7ae7b5113ae.tar.gz cygnal-4b154cc1b3b5c73e719ab505a8fcb7ae7b5113ae.tar.bz2 cygnal-4b154cc1b3b5c73e719ab505a8fcb7ae7b5113ae.zip |
* Makefile.in: Rework to accommodate new speclib arguments.
* speclib: Rework to extract everything from libcygwin.a rather than building
things from existing object files.
Diffstat (limited to 'winsup/cygwin/crt0.c')
-rw-r--r-- | winsup/cygwin/crt0.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/crt0.c b/winsup/cygwin/crt0.c index 2837a54d1..52ba7bd34 100644 --- a/winsup/cygwin/crt0.c +++ b/winsup/cygwin/crt0.c @@ -30,6 +30,8 @@ int __cygwin_crt0_bp = 0; extern int main (int argc, char **argv); +void cygwin_crt0 (int (*main) (int, char **)); + void mainCRTStartup () { |