00001 /* ========================================================================= 00002 Copyright (C) 2001 Eric Lavigne 00003 00004 Permission is granted to anyone to use this software for any purpose on any 00005 computer system, and to redistribute it freely, subject to the following 00006 restrictions: 00007 - The author is not responsible for the consequences of use of this 00008 software, no matter how awful, even if they arise from defects in it. 00009 - The origin of this software must not be misrepresented, either by 00010 explicit claim or by omission. 00011 - You are allowed to distributed modified copies of the software, in source 00012 and binary form, provided they are marked plainly as altered versions, and 00013 are not misrepresented as being the original software. 00014 ========================================================================= */ 00015 00016 #include <stdlib.h> 00017 #include <string.h> 00018 #include <stdio.h> 00019 #include <Memory.h> 00020 #include <GUSICommandLine.h> 00021 #include <stdlib.h> 00022 00023 /* ========================================================================= */ 00024 00025 DECLARE_MAIN(curl) 00026 00027 REGISTER_MAIN_START 00028 REGISTER_MAIN(curl) 00029 REGISTER_MAIN_END 00030 00031 /* ========================================================================= */ 00032 00033 int main() 00034 { 00035 ::MaxApplZone(); 00036 for (int i = 1; i <= 10; i++) 00037 ::MoreMasters(); 00038 00039 (void) exec_commands(); 00040 00041 return 0; 00042 } 00043 00044