├── internal ├── c99 │ ├── testdata │ │ ├── tcc-0.9.26 │ │ │ ├── VERSION │ │ │ └── tests │ │ │ │ ├── tests2 │ │ │ │ ├── 43_void_param.expect │ │ │ │ ├── 35_sizeof.expect │ │ │ │ ├── 48_nested_break.expect │ │ │ │ ├── fred.txt │ │ │ │ ├── 27_sizeof.expect │ │ │ │ ├── 29_array_address.expect │ │ │ │ ├── 12_hashdefine.expect │ │ │ │ ├── 14_if.expect │ │ │ │ ├── 18_include.h │ │ │ │ ├── 55_lshift_type.expect │ │ │ │ ├── 00_assignment.expect │ │ │ │ ├── 39_typedef.expect │ │ │ │ ├── 42_function_pointer.expect │ │ │ │ ├── 44_scoped_declarations.expect │ │ │ │ ├── 17_enum.expect │ │ │ │ ├── 47_switch_return.expect │ │ │ │ ├── 07_function.expect │ │ │ │ ├── 18_include.expect │ │ │ │ ├── 49_bracket_evaluation.expect │ │ │ │ ├── 03_struct.expect │ │ │ │ ├── 06_case.expect │ │ │ │ ├── 34_array_assignment.expect │ │ │ │ ├── 01_comment.expect │ │ │ │ ├── 19_pointer_arithmetic.expect │ │ │ │ ├── 20_pointer_comparison.expect │ │ │ │ ├── 41_hashif.expect │ │ │ │ ├── 13_integer_literals.expect │ │ │ │ ├── 04_for.expect │ │ │ │ ├── 26_character_constants.expect │ │ │ │ ├── 45_empty_for.expect │ │ │ │ ├── 51_static.expect │ │ │ │ ├── 05_array.expect │ │ │ │ ├── 33_ternary_op.expect │ │ │ │ ├── 08_while.expect │ │ │ │ ├── 09_do_while.expect │ │ │ │ ├── 38_multiple_array_index.expect │ │ │ │ ├── 52_unnamed_enum.expect │ │ │ │ ├── 21_char_array.expect │ │ │ │ ├── 54_goto.expect │ │ │ │ ├── 15_recursion.expect │ │ │ │ ├── 32_led.expect │ │ │ │ ├── 25_quicksort.expect │ │ │ │ ├── 31_args.expect │ │ │ │ ├── 11_precedence.expect │ │ │ │ ├── 10_pointer.expect │ │ │ │ ├── 28_strings.expect │ │ │ │ ├── 50_logical_second_arg.expect │ │ │ │ ├── 16_nesting.expect │ │ │ │ ├── 23_type_coercion.expect │ │ │ │ ├── 18_include.c │ │ │ │ ├── 43_void_param.c │ │ │ │ ├── 37_sprintf.expect │ │ │ │ ├── 29_array_address.c │ │ │ │ └── 36_array_initialisers.expect │ │ │ │ ├── hello │ │ │ │ ├── libtcc_test │ │ │ │ └── tcctest.gcc │ │ ├── cpp-expand │ │ │ ├── 7.c.expect │ │ │ ├── 3.h.expect │ │ │ ├── 5.c.expect │ │ │ ├── 6.c.expect │ │ │ ├── 1.h.expect │ │ │ ├── 3.h │ │ │ ├── 7.c │ │ │ ├── example-6.10-8.h.expect │ │ │ ├── example-6.10.2-7.h.expect │ │ │ ├── example-6.10.3.5-3.h.expect │ │ │ ├── example-6.10.3.5-8.h.expect │ │ │ ├── 6.c │ │ │ ├── 5.c │ │ │ ├── example-6.10-8.h │ │ │ ├── example-6.10.2-7.h │ │ │ ├── 2.h.expect │ │ │ ├── 8.c.expect │ │ │ ├── example-6.10.3.5-3.h │ │ │ ├── 1.h │ │ │ ├── example-6.10.2-8.h.expect │ │ │ ├── example-6.10.3.3-4.h.expect │ │ │ ├── example-6.10.3.5-7.h.expect │ │ │ ├── mustfail │ │ │ │ ├── example-6.10.3.5-9a.h │ │ │ │ ├── example-6.10.3.5-9b.h │ │ │ │ ├── example-6.10.3.5-9c.h │ │ │ │ └── example-6.10.3.5-9d.h │ │ │ ├── 9.c.expect │ │ │ ├── 8.c │ │ │ ├── example-6.10.3.5-7.h │ │ │ ├── 2.h │ │ │ ├── 0.h.expect │ │ │ ├── example-6.10.3.5-4.h │ │ │ ├── example-6.10.2-8.h │ │ │ ├── example-6.10.3.5-9.h.expect │ │ │ ├── example-6.10.3.5-8.h │ │ │ ├── example-6.10.3.3-4.h │ │ │ ├── example-6.10.3.5-6.h.expect │ │ │ ├── 4.h.expect │ │ │ ├── 9.c │ │ │ └── example-6.10.3.5-4.h.expect │ │ ├── bug │ │ │ ├── 9.expect │ │ │ ├── 2.c │ │ │ ├── 3.c │ │ │ └── 10.c │ │ └── github.com │ │ │ └── gcc-mirror │ │ │ └── gcc │ │ │ └── gcc │ │ │ └── testsuite │ │ │ └── gcc.c-torture │ │ │ └── execute │ │ │ ├── 920618-1.c │ │ │ ├── 970214-1.c │ │ │ ├── 920409-1.c │ │ │ ├── 970214-2.c │ │ │ ├── 20011128-1.c │ │ │ ├── 920829-1.c │ │ │ ├── 920731-1.c │ │ │ ├── 920603-1.c │ │ │ ├── 920721-1.c │ │ │ ├── 921019-2.c │ │ │ ├── 961017-1.c │ │ │ ├── pr22061-2.c │ │ │ ├── 920812-1.c │ │ │ ├── 20040705-2.c │ │ │ ├── 20040705-1.c │ │ │ ├── 920428-1.c │ │ │ ├── 920506-1.c │ │ │ ├── pr71626-2.c │ │ │ ├── 920721-2.c │ │ │ ├── 921006-1.c │ │ │ ├── 921104-1.c │ │ │ ├── 991030-1.c │ │ │ ├── 20001221-1.c │ │ │ ├── 921110-1.c │ │ │ ├── 921016-1.c │ │ │ ├── 921019-1.c │ │ │ ├── mod-1.c │ │ │ ├── 20000227-1.c │ │ │ ├── 20001112-1.c │ │ │ ├── 921007-1.c │ │ │ ├── 960219-1.c │ │ │ ├── 980602-1.c │ │ │ ├── 20000519-2.c │ │ │ ├── 20040706-1.c │ │ │ ├── 20091229-1.c │ │ │ ├── 920415-1.c │ │ │ ├── 20001027-1.c │ │ │ ├── 20140326-1.c │ │ │ ├── 950605-1.c │ │ │ ├── 970217-1.c │ │ │ ├── 920429-1.c │ │ │ ├── 20010222-1.c │ │ │ ├── 20011217-1.c │ │ │ ├── 20010605-1.c │ │ │ ├── 20020911-1.c │ │ │ ├── 920501-1.c │ │ │ ├── 921218-1.c │ │ │ ├── 20040208-1.c │ │ │ ├── 920604-1.c │ │ │ ├── 930527-1.c │ │ │ ├── 961112-1.c │ │ │ ├── 961122-2.c │ │ │ ├── pr58387.c │ │ │ ├── 20030128-1.c │ │ │ ├── 920612-1.c │ │ │ ├── 930916-1.c │ │ │ ├── complex-4.c │ │ │ ├── inst-check.c │ │ │ ├── pr59388.c │ │ │ ├── 921123-1.c │ │ │ ├── 930429-2.c │ │ │ ├── 950607-1.c │ │ │ ├── 950906-1.c │ │ │ ├── bf-layout-1.c │ │ │ ├── pr23941.c │ │ │ ├── pr42570.c │ │ │ ├── pr61306-3.c │ │ │ ├── pr71335.c │ │ │ ├── 20000717-2.c │ │ │ ├── 20011114-1.c │ │ │ ├── 920711-1.c │ │ │ ├── 921207-1.c │ │ │ ├── 931110-2.c │ │ │ ├── 960402-1.c │ │ │ ├── 20010711-1.c │ │ │ ├── 20011109-2.c │ │ │ ├── 920410-1.c │ │ │ ├── 920909-1.c │ │ │ ├── 921202-2.c │ │ │ ├── 931012-1.c │ │ │ ├── align-1.c │ │ │ ├── packed-2.c │ │ │ ├── widechar-1.c │ │ │ ├── 20001009-1.c │ │ │ ├── 930608-1.c │ │ │ ├── 941025-1.c │ │ │ ├── 960419-2.c │ │ │ ├── 990324-1.c │ │ │ ├── align-3.c │ │ │ ├── 930429-1.c │ │ │ ├── 931208-1.c │ │ │ ├── 940115-1.c │ │ │ ├── 941101-1.c │ │ │ ├── ffs-1.c │ │ │ ├── pr34070-1.c │ │ │ ├── struct-ini-4.c │ │ │ ├── 20000503-1.c │ │ │ ├── 20040707-1.c │ │ │ ├── pr35390.c │ │ │ ├── scope-1.c │ │ │ ├── 20080408-1.c │ │ │ ├── 950511-1.c │ │ │ ├── 960419-1.c │ │ │ ├── 991202-1.c │ │ │ ├── divconst-3.c │ │ │ └── pr43629.c │ ├── headers │ │ ├── linux_386 │ │ │ ├── usr │ │ │ │ └── include │ │ │ │ │ ├── linux │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── param.h │ │ │ │ │ └── ioctl.h │ │ │ │ │ └── i386-linux-gnu │ │ │ │ │ ├── asm │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── socket.h │ │ │ │ │ └── sockios.h │ │ │ │ │ └── bits │ │ │ │ │ ├── types │ │ │ │ │ ├── __FILE.h │ │ │ │ │ ├── mbstate_t.h │ │ │ │ │ ├── time_t.h │ │ │ │ │ ├── clock_t.h │ │ │ │ │ ├── timer_t.h │ │ │ │ │ ├── FILE.h │ │ │ │ │ └── clockid_t.h │ │ │ │ │ └── endian.h │ │ │ └── paths │ │ └── linux_amd64 │ │ │ ├── usr │ │ │ └── include │ │ │ │ ├── linux │ │ │ │ ├── errno.h │ │ │ │ ├── param.h │ │ │ │ └── ioctl.h │ │ │ │ ├── asm │ │ │ │ ├── errno.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── param.h │ │ │ │ ├── socket.h │ │ │ │ └── sockios.h │ │ │ │ └── bits │ │ │ │ └── endian.h │ │ │ └── paths │ └── README.md └── ccgo │ └── README.md ├── _tcl8.6.8 ├── compat │ └── zlib │ │ ├── contrib │ │ ├── blast │ │ │ ├── test.txt │ │ │ ├── README │ │ │ ├── test.pk │ │ │ └── Makefile │ │ ├── infback9 │ │ │ └── README │ │ ├── puff │ │ │ └── zeros.raw │ │ ├── masmx64 │ │ │ └── bld_ml64.bat │ │ ├── dotzlib │ │ │ ├── DotZLib.chm │ │ │ └── DotZLib │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── Inflater.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── GZipStream.cs │ │ │ │ └── CircularBuffer.cs │ │ ├── masmx86 │ │ │ └── bld_ml32.bat │ │ ├── minizip │ │ │ └── MiniZip64_Changes.txt │ │ ├── delphi │ │ │ └── ZLibConst.pas │ │ └── testzlib │ │ │ └── testzlib.txt │ │ ├── zlib.3.pdf │ │ ├── win32 │ │ ├── zdll.lib │ │ ├── zlib1.dll │ │ └── VisualC.txt │ │ ├── win64 │ │ ├── zdll.lib │ │ └── zlib1.dll │ │ ├── Makefile │ │ ├── old │ │ └── README │ │ └── nintendods │ │ └── README ├── generic │ ├── tommath.h │ ├── tclTomMathInt.h │ └── README ├── unix │ ├── aclocal.m4 │ └── dltest │ │ └── README └── library │ ├── tzdata │ ├── EST │ ├── Etc │ │ ├── GMT │ │ ├── UCT │ │ ├── UTC │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Zulu │ │ ├── Greenwich │ │ └── Universal │ ├── HST │ ├── MST │ ├── GMT │ ├── GMT0 │ ├── UCT │ ├── UTC │ ├── Zulu │ ├── Africa │ │ ├── Lagos │ │ ├── Abidjan │ │ ├── Maputo │ │ ├── Bangui │ │ ├── Douala │ │ ├── Lome │ │ ├── Luanda │ │ ├── Malabo │ │ ├── Niamey │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Dakar │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lusaka │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Conakry │ │ ├── Djibouti │ │ ├── Freetown │ │ ├── Kampala │ │ ├── Libreville │ │ ├── Lubumbashi │ │ ├── Mogadishu │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Addis_Ababa │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Dar_es_Salaam │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Monrovia │ │ └── Ndjamena │ ├── Asia │ │ ├── Dubai │ │ ├── Riyadh │ │ ├── Urumqi │ │ ├── Aden │ │ ├── Bahrain │ │ ├── Dacca │ │ ├── Macao │ │ ├── Muscat │ │ ├── Kashgar │ │ ├── Kuwait │ │ ├── Rangoon │ │ ├── Thimbu │ │ ├── Calcutta │ │ ├── Harbin │ │ ├── Qatar │ │ ├── Vientiane │ │ ├── Ashkhabad │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Kabul │ │ ├── Katmandu │ │ ├── Phnom_Penh │ │ ├── Tel_Aviv │ │ ├── Thimphu │ │ ├── Bangkok │ │ ├── Brunei │ │ ├── Istanbul │ │ ├── Saigon │ │ ├── Kathmandu │ │ ├── Ujung_Pandang │ │ ├── Ulan_Bator │ │ ├── Jayapura │ │ └── Dili │ ├── GMT+0 │ ├── GMT-0 │ ├── Indian │ │ ├── Mahe │ │ ├── Cocos │ │ ├── Kerguelen │ │ ├── Christmas │ │ ├── Reunion │ │ ├── Comoro │ │ ├── Chagos │ │ ├── Mayotte │ │ ├── Maldives │ │ └── Antananarivo │ ├── Antarctica │ │ ├── Syowa │ │ ├── Rothera │ │ ├── Vostok │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── South_Pole │ │ └── DumontDUrville │ ├── Greenwich │ ├── Pacific │ │ ├── Chuuk │ │ ├── Palau │ │ ├── Wake │ │ ├── Funafuti │ │ ├── Gambier │ │ ├── Pohnpei │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Wallis │ │ ├── Guadalcanal │ │ ├── Marquesas │ │ ├── Saipan │ │ ├── Truk │ │ ├── Yap │ │ ├── Majuro │ │ ├── Ponape │ │ ├── Fakaofo │ │ ├── Midway │ │ ├── Samoa │ │ ├── Johnston │ │ ├── Pago_Pago │ │ ├── Pitcairn │ │ ├── Port_Moresby │ │ ├── Guam │ │ ├── Kosrae │ │ ├── Niue │ │ ├── Enderbury │ │ ├── Kwajalein │ │ └── Kiritimati │ ├── ROC │ ├── ROK │ ├── Universal │ ├── GB │ ├── Iran │ ├── Japan │ ├── Egypt │ ├── Eire │ ├── PRC │ ├── W-SU │ ├── Cuba │ ├── GB-Eire │ ├── Israel │ ├── Libya │ ├── NZ │ ├── Navajo │ ├── Poland │ ├── America │ │ ├── Port_of_Spain │ │ ├── Atka │ │ ├── Aruba │ │ ├── Cayman │ │ ├── Shiprock │ │ ├── Cayenne │ │ ├── Ensenada │ │ ├── Montreal │ │ ├── Panama │ │ ├── Curacao │ │ ├── Kralendijk │ │ ├── Lower_Princes │ │ ├── Santa_Isabel │ │ ├── Antigua │ │ ├── Coral_Harbour │ │ ├── Grenada │ │ ├── Knox_IN │ │ ├── Marigot │ │ ├── Porto_Acre │ │ ├── Tortola │ │ ├── Virgin │ │ ├── Anguilla │ │ ├── Dominica │ │ ├── Guadeloupe │ │ ├── Jujuy │ │ ├── Montserrat │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Cordoba │ │ ├── Mendoza │ │ ├── Rosario │ │ ├── St_Barthelemy │ │ ├── Creston │ │ ├── Guyana │ │ ├── La_Paz │ │ ├── Catamarca │ │ ├── Louisville │ │ ├── Fort_Wayne │ │ ├── Indianapolis │ │ ├── Buenos_Aires │ │ └── Argentina │ │ │ └── ComodRivadavia │ ├── Atlantic │ │ ├── South_Georgia │ │ ├── Jan_Mayen │ │ ├── Faeroe │ │ └── St_Helena │ ├── Hongkong │ ├── Jamaica │ ├── NZ-CHAT │ ├── Portugal │ ├── Turkey │ ├── US │ │ ├── Aleutian │ │ ├── Mountain │ │ ├── Alaska │ │ ├── Arizona │ │ ├── Central │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Michigan │ │ ├── Samoa │ │ ├── Pacific │ │ ├── Pacific-New │ │ ├── Indiana-Starke │ │ └── East-Indiana │ ├── Brazil │ │ ├── West │ │ ├── East │ │ ├── Acre │ │ └── DeNoronha │ ├── Europe │ │ ├── Nicosia │ │ ├── Vaduz │ │ ├── Vatican │ │ ├── Belfast │ │ ├── Busingen │ │ ├── Guernsey │ │ ├── Jersey │ │ ├── San_Marino │ │ ├── Bratislava │ │ ├── Skopje │ │ ├── Zagreb │ │ ├── Isle_of_Man │ │ ├── Ljubljana │ │ ├── Mariehamn │ │ ├── Podgorica │ │ ├── Sarajevo │ │ └── Tiraspol │ ├── Singapore │ ├── Iceland │ ├── Kwajalein │ ├── SystemV │ │ ├── CST6 │ │ ├── MST7 │ │ ├── YST9 │ │ ├── AST4ADT │ │ ├── CST6CDT │ │ ├── HST10 │ │ ├── MST7MDT │ │ ├── PST8 │ │ ├── AST4 │ │ ├── EST5EDT │ │ ├── YST9YDT │ │ ├── EST5 │ │ └── PST8PDT │ ├── Arctic │ │ └── Longyearbyen │ ├── Australia │ │ ├── ACT │ │ ├── NSW │ │ ├── West │ │ ├── North │ │ ├── Canberra │ │ ├── LHI │ │ ├── South │ │ ├── Tasmania │ │ ├── Queensland │ │ ├── Victoria │ │ └── Yancowinna │ ├── Canada │ │ ├── Eastern │ │ ├── Atlantic │ │ ├── Central │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Yukon │ │ ├── Saskatchewan │ │ ├── Newfoundland │ │ └── East-Saskatchewan │ ├── Chile │ │ ├── EasterIsland │ │ └── Continental │ └── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ ├── msgcat │ └── pkgIndex.tcl │ ├── encoding │ ├── iso2022-kr.enc │ └── iso2022-jp.enc │ ├── platform │ └── pkgIndex.tcl │ └── msgs │ ├── es_ar.msg │ ├── ru_ua.msg │ ├── en_za.msg │ ├── it_ch.msg │ ├── af_za.msg │ ├── en_bw.msg │ ├── en_sg.msg │ ├── en_zw.msg │ ├── es_bo.msg │ ├── es_cl.msg │ ├── es_co.msg │ ├── es_cr.msg │ ├── es_do.msg │ ├── es_ec.msg │ ├── es_gt.msg │ ├── es_hn.msg │ ├── es_mx.msg │ ├── es_ni.msg │ ├── es_pa.msg │ ├── es_pe.msg │ ├── es_pr.msg │ ├── es_py.msg │ ├── es_sv.msg │ ├── es_uy.msg │ ├── es_ve.msg │ ├── gl_es.msg │ ├── gv_gb.msg │ ├── hi_in.msg │ ├── id_id.msg │ ├── kw_gb.msg │ ├── mr_in.msg │ ├── ta_in.msg │ ├── kok_in.msg │ ├── ar_in.msg │ ├── bn_in.msg │ └── ms_my.msg ├── _sqlite ├── test │ ├── fuzzdata1.db │ ├── fuzzdata2.db │ ├── fuzzdata3.db │ ├── fuzzdata4.db │ └── fuzzdata5.db └── ext │ ├── fts1 │ ├── README.txt │ ├── fts1.h │ └── fulltext.h │ ├── fts2 │ └── README.txt │ └── fts3 │ └── README.txt └── README.md /internal/c99/testdata/tcc-0.9.26/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.26 2 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /_tcl8.6.8/generic/tommath.h: -------------------------------------------------------------------------------- 1 | #include "tclTomMathInt.h" 2 | -------------------------------------------------------------------------------- /_tcl8.6.8/unix/aclocal.m4: -------------------------------------------------------------------------------- 1 | builtin(include,../unix/tcl.m4) 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/7.c.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/3.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | ": @\n" 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/5.c.expect: -------------------------------------------------------------------------------- 1 | 2 | bar(1, 2, 3); 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/6.c.expect: -------------------------------------------------------------------------------- 1 | 2 | bar2(1, 2, 3); 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/43_void_param.expect: -------------------------------------------------------------------------------- 1 | yo 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/35_sizeof.expect: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/48_nested_break.expect: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/fred.txt: -------------------------------------------------------------------------------- 1 | hello 2 | hello 3 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/1.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | f(2*f(2*42)) 4 | f(2*24) 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/3.h: -------------------------------------------------------------------------------- 1 | #define str(s) # s 2 | 3 | str(: @\n) 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/7.c: -------------------------------------------------------------------------------- 1 | #define a(b) b 2 | #define c a 3 | c(42) 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/27_sizeof.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | 8 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/29_array_address.expect: -------------------------------------------------------------------------------- 1 | bcdef 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10-8.h.expect: -------------------------------------------------------------------------------- 1 | 2 | # include 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.2-7.h.expect: -------------------------------------------------------------------------------- 1 | 2 | "myprog.h" 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-3.h.expect: -------------------------------------------------------------------------------- 1 | 2 | int table[100]; 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-8.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ok 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/12_hashdefine.expect: -------------------------------------------------------------------------------- 1 | 12 2 | 12, 24, 36 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/14_if.expect: -------------------------------------------------------------------------------- 1 | a is true 2 | b is false 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/18_include.h: -------------------------------------------------------------------------------- 1 | printf("included\n"); 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/55_lshift_type.expect: -------------------------------------------------------------------------------- 1 | 0 test(s) failed 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/6.c: -------------------------------------------------------------------------------- 1 | #define foo2(a, b...) bar2(a, b) 2 | foo2(1, 2, 3); 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/00_assignment.expect: -------------------------------------------------------------------------------- 1 | 42 2 | 64 3 | 12, 34 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/39_typedef.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 12,34 3 | 12,34 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/42_function_pointer.expect: -------------------------------------------------------------------------------- 1 | yo 24 2 | 42 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/44_scoped_declarations.expect: -------------------------------------------------------------------------------- 1 | it's all good 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/5.c: -------------------------------------------------------------------------------- 1 | #define foo(a, ...) bar(a, __VA_ARGS__) 2 | foo(1, 2, 3); 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10-8.h: -------------------------------------------------------------------------------- 1 | #define EMPTY 2 | EMPTY # include 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.2-7.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include "myprog.h" 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/17_enum.expect: -------------------------------------------------------------------------------- 1 | 0 1 2 3 54 73 74 75 2 | 12 3 | 54 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/47_switch_return.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | out 4 | 3 5 | -------------------------------------------------------------------------------- /_sqlite/test/fuzzdata1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_sqlite/test/fuzzdata1.db -------------------------------------------------------------------------------- /_sqlite/test/fuzzdata2.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_sqlite/test/fuzzdata2.db -------------------------------------------------------------------------------- /_sqlite/test/fuzzdata3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_sqlite/test/fuzzdata3.db -------------------------------------------------------------------------------- /_sqlite/test/fuzzdata4.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_sqlite/test/fuzzdata4.db -------------------------------------------------------------------------------- /_sqlite/test/fuzzdata5.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_sqlite/test/fuzzdata5.db -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/2.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | f(2 * (2+(3,4)-0,1)) 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/8.c.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | check("void", __alignof__(void)); 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-3.h: -------------------------------------------------------------------------------- 1 | #define TABSIZE 100 2 | int table[TABSIZE]; 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/07_function.expect: -------------------------------------------------------------------------------- 1 | 9 2 | 16 3 | a=1234 4 | qfunc() 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/18_include.expect: -------------------------------------------------------------------------------- 1 | including 2 | included 3 | done 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/49_bracket_evaluation.expect: -------------------------------------------------------------------------------- 1 | 12.340000, 56.780000 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/1.h: -------------------------------------------------------------------------------- 1 | #define f(x) f(2*x) 2 | #define m(a) a(24) 3 | f(f(42)) 4 | m(f) 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.2-8.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | "versN.h" 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/03_struct.expect: -------------------------------------------------------------------------------- 1 | 12 2 | 34 3 | 12 4 | 34 5 | 56 6 | 78 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/06_case.expect: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 1 4 | 1 5 | 2 6 | 2 7 | 3 8 | 0 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/34_array_assignment.expect: -------------------------------------------------------------------------------- 1 | 12 23 34 45 2 | 12 23 34 45 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.3-4.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | char p[] = "x ## y"; 6 | 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/01_comment.expect: -------------------------------------------------------------------------------- 1 | Hello 2 | Hello 3 | Hello 4 | Hello 5 | Hello 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/19_pointer_arithmetic.expect: -------------------------------------------------------------------------------- 1 | 42 2 | b is not NULL 3 | c is NULL 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/20_pointer_comparison.expect: -------------------------------------------------------------------------------- 1 | 12 2 | 34 3 | 0 4 | 1 5 | 1 6 | 0 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/41_hashif.expect: -------------------------------------------------------------------------------- 1 | #include test 2 | b 3 | g 4 | i 5 | p 6 | r 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /_tcl8.6.8/generic/tclTomMathInt.h: -------------------------------------------------------------------------------- 1 | #include "tclInt.h" 2 | #include "tclTomMath.h" 3 | #include "tommath_class.h" 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-7.h.expect: -------------------------------------------------------------------------------- 1 | 2 | int j[] = { 123, 45, 67, 89, 3 | 10, 11, 12, }; 4 | -------------------------------------------------------------------------------- /_sqlite/ext/fts1/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains source code to the first full-text search 2 | extension for SQLite. 3 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/win32/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/win32/zdll.lib -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/win64/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/win64/zdll.lib -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/win32/zlib1.dll -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/win64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/win64/zlib1.dll -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/13_integer_literals.expect: -------------------------------------------------------------------------------- 1 | 24680 2 | 342391 3 | 2386092 4 | 2386092 5 | 1365 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/04_for.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/26_character_constants.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 8 3 | 64 4 | 1 5 | 14 6 | 16 7 | 64 8 | test @ 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /internal/c99/testdata/bug/9.expect: -------------------------------------------------------------------------------- 1 | 340282346638528859811704183484516925440.000000 0 2 | 1493652873142210332356247552.000000 2147483647 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/45_empty_for.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/51_static.expect: -------------------------------------------------------------------------------- 1 | 1234 2 | 4567 3 | 4568 4 | 4569 5 | 4570 6 | 1234 7 | 8901 8 | 2345 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/mustfail/example-6.10.3.5-9a.h: -------------------------------------------------------------------------------- 1 | #define OBJ_LIKE (1-1) 2 | #define OBJ_LIKE (0) // different token sequence 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/internal/c99/testdata/tcc-0.9.26/tests/hello -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/05_array.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | 9 4 | 16 5 | 25 6 | 36 7 | 49 8 | 64 9 | 81 10 | 100 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/33_ternary_op.expect: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 4 4 | 9 5 | 16 6 | 15 7 | 18 8 | 21 9 | 24 10 | 27 11 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- 1 | ml64.exe /Flinffasx64 /c /Zi inffasx64.asm 2 | ml64.exe /Flgvmat64 /c /Zi gvmat64.asm 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/mustfail/example-6.10.3.5-9b.h: -------------------------------------------------------------------------------- 1 | #define OBJ_LIKE (1-1) 2 | #define OBJ_LIKE (1 - 1) // different white space 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920618-1.c: -------------------------------------------------------------------------------- 1 | main(){if(1.17549435e-38F<=1.1)exit(0);abort();} 2 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/08_while.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 4 | 3 5 | 5 6 | 8 7 | 13 8 | 21 9 | 34 10 | 55 11 | 89 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/09_do_while.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 4 | 3 5 | 5 6 | 8 7 | 13 8 | 21 9 | 34 10 | 55 11 | 89 12 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | -@echo "Please use ./configure first. Thank you." 3 | 4 | distclean: 5 | make -f Makefile.in distclean 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- 1 | ml /coff /Zi /c /Flmatch686.lst match686.asm 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/libtcc_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/internal/c99/testdata/tcc-0.9.26/tests/libtcc_test -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tcctest.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/internal/c99/testdata/tcc-0.9.26/tests/tcctest.gcc -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/38_multiple_array_index.expect: -------------------------------------------------------------------------------- 1 | x=0: 1 2 3 4 2 | x=1: 5 6 7 8 3 | x=2: 9 10 11 12 4 | x=3: 13 14 15 16 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/52_unnamed_enum.expect: -------------------------------------------------------------------------------- 1 | a=0 2 | b=1 3 | c=2 4 | e=0 5 | f=1 6 | g=2 7 | i=0 8 | j=1 9 | k=2 10 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/EST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:EST) { 4 | {-9223372036854775808 -18000 0 EST} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT) { 4 | {-9223372036854775808 0 0 GMT} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UCT) { 4 | {-9223372036854775808 0 0 UCT} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UTC) { 4 | {-9223372036854775808 0 0 UTC} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/HST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:HST) { 4 | {-9223372036854775808 -36000 0 HST} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/MST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:MST) { 4 | {-9223372036854775808 -25200 0 MST} 5 | } 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/linux/param.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_PARAM_H 2 | #define _LINUX_PARAM_H 3 | 4 | #include 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/mustfail/example-6.10.3.5-9c.h: -------------------------------------------------------------------------------- 1 | #define FUNC_LIKE(a) ( a ) 2 | #define FUNC_LIKE(b) ( a ) // different parameter usage 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/mustfail/example-6.10.3.5-9d.h: -------------------------------------------------------------------------------- 1 | #define FUNC_LIKE(a) ( a ) 2 | #define FUNC_LIKE(b) ( b ) // different parameter spelling 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/21_char_array.expect: -------------------------------------------------------------------------------- 1 | hello 2 | h: 104 3 | e: 101 4 | l: 108 5 | l: 108 6 | o: 111 7 | copied string is hello 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/54_goto.expect: -------------------------------------------------------------------------------- 1 | In fred() 2 | At end 3 | In joe() 4 | c = 1234 5 | done 6 | In henry() 7 | b = 1234 8 | done 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/linux/param.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_PARAM_H 2 | #define _LINUX_PARAM_H 3 | 4 | #include 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/970214-1.c: -------------------------------------------------------------------------------- 1 | #define L 1 2 | main () 3 | { 4 | exit (L'1' != L'1'); 5 | } 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/15_recursion.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 6 4 | 24 5 | 120 6 | 720 7 | 5040 8 | 40320 9 | 362880 10 | 3628800 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/32_led.expect: -------------------------------------------------------------------------------- 1 | _ _ _ _ 2 | | _| _| |_| |_ |_ | 3 | | |_ _| | _| |_| | 4 | 5 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+1) { 4 | {-9223372036854775808 -3600 0 -01} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+10) { 4 | {-9223372036854775808 -36000 0 -10} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+11) { 4 | {-9223372036854775808 -39600 0 -11} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+12) { 4 | {-9223372036854775808 -43200 0 -12} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+2) { 4 | {-9223372036854775808 -7200 0 -02} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+3) { 4 | {-9223372036854775808 -10800 0 -03} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+4) { 4 | {-9223372036854775808 -14400 0 -04} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+5) { 4 | {-9223372036854775808 -18000 0 -05} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+6) { 4 | {-9223372036854775808 -21600 0 -06} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+7) { 4 | {-9223372036854775808 -25200 0 -07} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+8) { 4 | {-9223372036854775808 -28800 0 -08} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+9) { 4 | {-9223372036854775808 -32400 0 -09} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-1) { 4 | {-9223372036854775808 3600 0 +01} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-10) { 4 | {-9223372036854775808 36000 0 +10} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-11) { 4 | {-9223372036854775808 39600 0 +11} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-12) { 4 | {-9223372036854775808 43200 0 +12} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-13) { 4 | {-9223372036854775808 46800 0 +13} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-14) { 4 | {-9223372036854775808 50400 0 +14} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-2) { 4 | {-9223372036854775808 7200 0 +02} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-3) { 4 | {-9223372036854775808 10800 0 +03} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-4) { 4 | {-9223372036854775808 14400 0 +04} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-5) { 4 | {-9223372036854775808 18000 0 +05} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-6) { 4 | {-9223372036854775808 21600 0 +06} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-7) { 4 | {-9223372036854775808 25200 0 +07} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-8) { 4 | {-9223372036854775808 28800 0 +08} 5 | } 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-9) { 4 | {-9223372036854775808 32400 0 +09} 5 | } 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/9.c.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | int test = 4; 8 | 9 | 10 | 11 | int main (void) { 12 | return test; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920409-1.c: -------------------------------------------------------------------------------- 1 | x(){signed char c=-1;return c<0;}main(){if(x()!=1)abort();exit(0);} 2 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/8.c: -------------------------------------------------------------------------------- 1 | #define QUOTE_(s) #s 2 | #define QUOTE(s) QUOTE_(s) 3 | #define check(t) check(QUOTE(t), __alignof__(t)) 4 | 5 | check (void); 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/25_quicksort.expect: -------------------------------------------------------------------------------- 1 | 62 83 4 89 36 21 74 37 65 33 96 38 53 16 74 55 2 | 4 16 21 33 36 37 38 53 55 62 65 74 74 83 89 96 3 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/_tcl8.6.8/compat/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the contrib/vstudio/ directory. 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/bug/2.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void foo(char**) {} 4 | 5 | int main() { 6 | char *p = NULL; 7 | foo(&p); 8 | return p != NULL; 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/970214-2.c: -------------------------------------------------------------------------------- 1 | #define m(L) (L'1' + (L)) 2 | main () 3 | { 4 | exit (m (0) != L'1'); 5 | } 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/31_args.expect: -------------------------------------------------------------------------------- 1 | hello world 6 2 | arg 0: 31_args.c 3 | arg 1: - 4 | arg 2: arg1 5 | arg 3: arg2 6 | arg 4: arg3 7 | arg 5: arg4 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgcat/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | if {![package vsatisfies [package provide Tcl] 8.5-]} {return} 2 | package ifneeded msgcat 1.6.1 [list source [file join $dir msgcat.tcl]] 3 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/linux/ioctl.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_IOCTL_H 2 | #define _LINUX_IOCTL_H 3 | 4 | #include 5 | 6 | #endif /* _LINUX_IOCTL_H */ 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-7.h: -------------------------------------------------------------------------------- 1 | #define t(x,y,z) x ## y ## z 2 | int j[] = { t(1,2,3), t(,4,5), t(6,,7), t(8,9,), 3 | t(10,,), t(,11,), t(,,12), t(,,) }; 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20011128-1.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | char blah[33] = "01234567890123456789"; 4 | exit (0); 5 | } 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920829-1.c: -------------------------------------------------------------------------------- 1 | long long c=2863311530LL,c3=2863311530LL*3; 2 | main(){if(c*3!=c3)abort();exit(0);} 3 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/encoding/iso2022-kr.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-kr, escape-driven 2 | E 3 | name iso2022-kr 4 | init \x1b$)C 5 | final {} 6 | iso8859-1 \x0f 7 | ksc5601 \x0e 8 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/linux/ioctl.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_IOCTL_H 2 | #define _LINUX_IOCTL_H 3 | 4 | #include 5 | 6 | #endif /* _LINUX_IOCTL_H */ 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- 1 | 2 | MiniZip 1.1 was derrived from MiniZip at version 1.01f 3 | 4 | Change in 1.0 (Okt 2009) 5 | - **TODO - Add history** 6 | 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920731-1.c: -------------------------------------------------------------------------------- 1 | f(x){int i;for(i=0;i<8&&(x&1)==0;x>>=1,i++);return i;} 2 | main(){if(f(4)!=2)abort();exit(0);} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/11_precedence.expect: -------------------------------------------------------------------------------- 1 | 134 2 | 134 3 | 0 4 | 1 5 | 1 6 | 1 7 | 1 8 | 46 9 | 1, 0 10 | 0, 1 11 | 1 12 | 1916 13 | 1916 14 | 64 15 | 4 16 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UCT)]} { 3 | LoadTimeZoneFile Etc/UCT 4 | } 5 | set TZData(:UCT) $TZData(:Etc/UCT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UTC) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/paths: -------------------------------------------------------------------------------- 1 | /usr/lib/gcc/i686-linux-gnu/7/include 2 | /usr/local/include 3 | /usr/lib/gcc/i686-linux-gnu/7/include-fixed 4 | /usr/include/i386-linux-gnu 5 | /usr/include 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/2.h: -------------------------------------------------------------------------------- 1 | #define x 3 2 | #define f(a) f(x * (a)) 3 | #undef x 4 | #define x 2 5 | #define g f 6 | #define w 0,1 7 | 8 | g(x+(3,4)-w) 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- 1 | blast: blast.c blast.h 2 | cc -DTEST -o blast blast.c 3 | 4 | test: blast 5 | blast < test.pk | cmp - test.txt 6 | 7 | clean: 8 | rm -f blast blast.o 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Lagos) { 4 | {-9223372036854775808 816 0 LMT} 5 | {-1588464816 3600 0 WAT} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dubai) { 4 | {-9223372036854775808 13272 0 LMT} 5 | {-1577936472 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Riyadh) { 4 | {-9223372036854775808 11212 0 LMT} 5 | {-719636812 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Urumqi) { 4 | {-9223372036854775808 21020 0 LMT} 5 | {-1325483420 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mahe) { 4 | {-9223372036854775808 13308 0 LMT} 5 | {-2006653308 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/0.h.expect: -------------------------------------------------------------------------------- 1 | 2 | b 3 | 4 | b2 5 | 6 | b3 7 | 8 | b4 9 | 10 | b5 c5 11 | 12 | b6 c6 13 | 14 | b7 c7 15 | 16 | b8 c8 17 | 18 | b9 c9 19 | 20 | b10 c10 21 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920603-1.c: -------------------------------------------------------------------------------- 1 | f(got){if(got!=0xffff)abort();} 2 | main(){signed char c=-1;unsigned u=(unsigned short)c;f(u);exit(0);} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920721-1.c: -------------------------------------------------------------------------------- 1 | long f(short a,short b){return (long)a/b;} 2 | main(){if(f(-32768,-1)!=32768L)abort();else exit(0);} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921019-2.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | double x,y=0.5; 4 | x=y/0.2; 5 | if(x!=x) 6 | abort(); 7 | exit(0); 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/961017-1.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | unsigned char z = 0; 4 | 5 | do ; 6 | while (--z > 0); 7 | exit (0); 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr22061-2.c: -------------------------------------------------------------------------------- 1 | int *x; 2 | static void bar (char a[2][(*x)++]) {} 3 | int 4 | main (void) 5 | { 6 | exit (0); 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Abidjan) { 4 | {-9223372036854775808 -968 0 LMT} 5 | {-1830383032 0 0 GMT} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Maputo) { 4 | {-9223372036854775808 7820 0 LMT} 5 | {-2109291020 7200 0 CAT} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/Syowa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Syowa) { 4 | {-9223372036854775808 0 0 -00} 5 | {-407808000 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Cocos) { 4 | {-9223372036854775808 23260 0 LMT} 5 | {-2209012060 23400 0 +0630} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Kerguelen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Kerguelen) { 4 | {-9223372036854775808 0 0 -00} 5 | {-631152000 18000 0 +05} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Chuuk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Chuuk) { 4 | {-9223372036854775808 36428 0 LMT} 5 | {-2177489228 36000 0 +10} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Palau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Palau) { 4 | {-9223372036854775808 32276 0 LMT} 5 | {-2177485076 32400 0 +09} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wake) { 4 | {-9223372036854775808 39988 0 LMT} 5 | {-2177492788 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/ROC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Taipei)]} { 3 | LoadTimeZoneFile Asia/Taipei 4 | } 5 | set TZData(:ROC) $TZData(:Asia/Taipei) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/ROK: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Seoul)]} { 3 | LoadTimeZoneFile Asia/Seoul 4 | } 5 | set TZData(:ROK) $TZData(:Asia/Seoul) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/bug/3.c: -------------------------------------------------------------------------------- 1 | static void f(int); 2 | 3 | int main() { 4 | f(42); 5 | return 0; 6 | } 7 | 8 | static void f(int i) { 9 | int j = 0; 10 | if (j) { 11 | j++; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920812-1.c: -------------------------------------------------------------------------------- 1 | typedef int t; 2 | f(t y){switch(y){case 1:return 1;}return 0;} 3 | main(){if(f((t)1)!=1)abort();exit(0);} 4 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/Rothera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Rothera) { 4 | {-9223372036854775808 0 0 -00} 5 | {218246400 -10800 0 -03} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/Vostok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Vostok) { 4 | {-9223372036854775808 0 0 -00} 5 | {-380073600 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GB: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Christmas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Christmas) { 4 | {-9223372036854775808 25372 0 LMT} 5 | {-2364102172 25200 0 +07} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Reunion: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Reunion) { 4 | {-9223372036854775808 13312 0 LMT} 5 | {-1848886912 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Iran: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tehran)]} { 3 | LoadTimeZoneFile Asia/Tehran 4 | } 5 | set TZData(:Iran) $TZData(:Asia/Tehran) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Japan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tokyo)]} { 3 | LoadTimeZoneFile Asia/Tokyo 4 | } 5 | set TZData(:Japan) $TZData(:Asia/Tokyo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Funafuti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Funafuti) { 4 | {-9223372036854775808 43012 0 LMT} 5 | {-2177495812 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Gambier: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Gambier) { 4 | {-9223372036854775808 -32388 0 LMT} 5 | {-1806678012 -32400 0 -09} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Pohnpei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pohnpei) { 4 | {-9223372036854775808 37972 0 LMT} 5 | {-2177490772 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Tahiti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tahiti) { 4 | {-9223372036854775808 -35896 0 LMT} 5 | {-1806674504 -36000 0 -10} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Tarawa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tarawa) { 4 | {-9223372036854775808 41524 0 LMT} 5 | {-2177494324 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Wallis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wallis) { 4 | {-9223372036854775808 44120 0 LMT} 5 | {-2177496920 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20040705-2.c: -------------------------------------------------------------------------------- 1 | /* { dg-require-effective-target int32plus } */ 2 | #define FIELDS2 long long l; 3 | #include "20040629-1.c" 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/10_pointer.expect: -------------------------------------------------------------------------------- 1 | a = 42 2 | bolshevic.a = 12 3 | bolshevic.b = 34 4 | bolshevic.c = 56 5 | tsar->a = 12 6 | tsar->b = 34 7 | tsar->c = 56 8 | bolshevic.b = 34 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/platform/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | package ifneeded platform 1.0.14 [list source [file join $dir platform.tcl]] 2 | package ifneeded platform::shell 1.1.4 [list source [file join $dir shell.tcl]] 3 | 4 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Egypt: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Cairo)]} { 3 | LoadTimeZoneFile Africa/Cairo 4 | } 5 | set TZData(:Egypt) $TZData(:Africa/Cairo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Dublin)]} { 3 | LoadTimeZoneFile Europe/Dublin 4 | } 5 | set TZData(:Eire) $TZData(:Europe/Dublin) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Etc/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/PRC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:PRC) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/W-SU: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Moscow)]} { 3 | LoadTimeZoneFile Europe/Moscow 4 | } 5 | set TZData(:W-SU) $TZData(:Europe/Moscow) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/__FILE.h: -------------------------------------------------------------------------------- 1 | #ifndef ____FILE_defined 2 | #define ____FILE_defined 1 3 | 4 | struct _IO_FILE; 5 | typedef struct _IO_FILE __FILE; 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/paths: -------------------------------------------------------------------------------- 1 | /usr/lib64/gcc/x86_64-suse-linux/4.8/include 2 | /usr/local/include 3 | /usr/lib64/gcc/x86_64-suse-linux/4.8/include-fixed 4 | /usr/x86_64-suse-linux/include 5 | /usr/include 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20040705-1.c: -------------------------------------------------------------------------------- 1 | /* { dg-require-effective-target int32plus } */ 2 | 3 | #define FIELDS1 long long l; 4 | #include "20040629-1.c" 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920428-1.c: -------------------------------------------------------------------------------- 1 | x(const char*s){char a[1];const char*ss=s;a[*s++]|=1;return(int)ss+1==(int)s;} 2 | main(){if(x("")!=1)abort();exit(0);} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920506-1.c: -------------------------------------------------------------------------------- 1 | int l[]={0,1}; 2 | main(){int*p=l;switch(*p++){case 0:exit(0);case 1:break;case 2:break;case 3:case 4:break;}abort();} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr71626-2.c: -------------------------------------------------------------------------------- 1 | /* PR middle-end/71626 */ 2 | /* { dg-additional-options "-fpic" { target fpic } } */ 3 | 4 | #include "pr71626-1.c" 5 | -------------------------------------------------------------------------------- /internal/ccgo/README.md: -------------------------------------------------------------------------------- 1 | # ccgo 2 | 3 | Package ccgo translates c99 ASTs to Go. (Work In Progress) 4 | 5 | This package is a modification of [0] supporting only SQLite. 6 | 7 | [0] https://github.com/cznic/ccgo 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Aden: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Aden) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Qatar)]} { 3 | LoadTimeZoneFile Asia/Qatar 4 | } 5 | set TZData(:Asia/Bahrain) $TZData(:Asia/Qatar) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dhaka)]} { 3 | LoadTimeZoneFile Asia/Dhaka 4 | } 5 | set TZData(:Asia/Dacca) $TZData(:Asia/Dhaka) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Macao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Macau)]} { 3 | LoadTimeZoneFile Asia/Macau 4 | } 5 | set TZData(:Asia/Macao) $TZData(:Asia/Macau) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dubai)]} { 3 | LoadTimeZoneFile Asia/Dubai 4 | } 5 | set TZData(:Asia/Muscat) $TZData(:Asia/Dubai) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Cuba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Havana)]} { 3 | LoadTimeZoneFile America/Havana 4 | } 5 | set TZData(:Cuba) $TZData(:America/Havana) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/GB-Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB-Eire) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Israel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Israel) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Libya: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Tripoli)]} { 3 | LoadTimeZoneFile Africa/Tripoli 4 | } 5 | set TZData(:Libya) $TZData(:Africa/Tripoli) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/NZ: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:NZ) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Navajo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:Navajo) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Guadalcanal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guadalcanal) { 4 | {-9223372036854775808 38388 0 LMT} 5 | {-1806748788 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Marquesas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Marquesas) { 4 | {-9223372036854775808 -33480 0 LMT} 5 | {-1806676920 -34200 0 -0930} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Poland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Warsaw)]} { 3 | LoadTimeZoneFile Europe/Warsaw 4 | } 5 | set TZData(:Poland) $TZData(:Europe/Warsaw) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-4.h: -------------------------------------------------------------------------------- 1 | #define max(a, b) ((a) > (b) ? (a) : (b)) 2 | max(x, y); 3 | max((x), y); 4 | max(x, (y)); 5 | max((x), (y)); 6 | max((x, 1), y); 7 | max((x, (1, 3)), ((y, 4), 2)); 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920721-2.c: -------------------------------------------------------------------------------- 1 | /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */ 2 | f(){} 3 | main(){int n=2;double x[n];f();exit(0);} 4 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921006-1.c: -------------------------------------------------------------------------------- 1 | /* REPRODUCED:RUN:SIGNAL MACHINE:i386 OPTIONS:-O */ 2 | main() 3 | { 4 | if(strcmp("X","")<0)abort(); 5 | exit(0); 6 | } 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921104-1.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | unsigned long val = 1; 4 | 5 | if (val > (unsigned long) ~0) 6 | abort(); 7 | exit (0); 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/991030-1.c: -------------------------------------------------------------------------------- 1 | double x = 0x1.fp1; 2 | int main() 3 | { 4 | if (x != 3.875) 5 | abort (); 6 | exit (0); 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Port_of_Spain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Port_of_Spain) { 4 | {-9223372036854775808 -14764 0 LMT} 5 | {-1825098836 -14400 0 AST} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Urumqi)]} { 3 | LoadTimeZoneFile Asia/Urumqi 4 | } 5 | set TZData(:Asia/Kashgar) $TZData(:Asia/Urumqi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Kuwait) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Yangon)]} { 3 | LoadTimeZoneFile Asia/Yangon 4 | } 5 | set TZData(:Asia/Rangoon) $TZData(:Asia/Yangon) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Thimphu)]} { 3 | LoadTimeZoneFile Asia/Thimphu 4 | } 5 | set TZData(:Asia/Thimbu) $TZData(:Asia/Thimphu) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Atlantic/South_Georgia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/South_Georgia) { 4 | {-9223372036854775808 -8768 0 LMT} 5 | {-2524512832 -7200 0 -02} 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Hongkong: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Hong_Kong)]} { 3 | LoadTimeZoneFile Asia/Hong_Kong 4 | } 5 | set TZData(:Hongkong) $TZData(:Asia/Hong_Kong) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Jamaica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Jamaica)]} { 3 | LoadTimeZoneFile America/Jamaica 4 | } 5 | set TZData(:Jamaica) $TZData(:America/Jamaica) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chatham)]} { 3 | LoadTimeZoneFile Pacific/Chatham 4 | } 5 | set TZData(:NZ-CHAT) $TZData(:Pacific/Chatham) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Portugal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Lisbon)]} { 3 | LoadTimeZoneFile Europe/Lisbon 4 | } 5 | set TZData(:Portugal) $TZData(:Europe/Lisbon) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Turkey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Turkey) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Aleutian: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:US/Aleutian) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20001221-1.c: -------------------------------------------------------------------------------- 1 | int main () 2 | { 3 | unsigned long long a; 4 | if (! (a = 0xfedcba9876543210ULL)) 5 | abort (); 6 | exit (0); 7 | } 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921110-1.c: -------------------------------------------------------------------------------- 1 | extern void abort(void); 2 | typedef void (*frob)(); 3 | frob f[] = {abort}; 4 | 5 | int main(void) 6 | { 7 | exit(0); 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/28_strings.expect: -------------------------------------------------------------------------------- 1 | hello 2 | gollo 3 | 1 4 | 1 5 | 1 6 | 5 7 | gollo! 8 | 1 9 | 1 10 | 1 11 | 1 12 | ollo! 13 | lo! 14 | 1 15 | grrrr! 16 | grgrr! 17 | 1 18 | 1 19 | 1 20 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Bangui) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Douala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Douala) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Lome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Lome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Luanda) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Malabo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Niamey) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Atka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:America/Atka) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kolkata)]} { 3 | LoadTimeZoneFile Asia/Kolkata 4 | } 5 | set TZData(:Asia/Calcutta) $TZData(:Asia/Kolkata) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Harbin) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Qatar) { 4 | {-9223372036854775808 12368 0 LMT} 5 | {-1577935568 14400 0 +04} 6 | {76190400 10800 0 +03} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Vientiane) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Brazil/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Manaus)]} { 3 | LoadTimeZoneFile America/Manaus 4 | } 5 | set TZData(:Brazil/West) $TZData(:America/Manaus) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Nicosia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Nicosia)]} { 3 | LoadTimeZoneFile Asia/Nicosia 4 | } 5 | set TZData(:Europe/Nicosia) $TZData(:Asia/Nicosia) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Vaduz) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Vatican: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/Vatican) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Saipan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Guam)]} { 3 | LoadTimeZoneFile Pacific/Guam 4 | } 5 | set TZData(:Pacific/Saipan) $TZData(:Pacific/Guam) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Singapore)]} { 3 | LoadTimeZoneFile Asia/Singapore 4 | } 5 | set TZData(:Singapore) $TZData(:Asia/Singapore) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:US/Mountain) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921016-1.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | int j=1081; 4 | struct 5 | { 6 | signed int m:11; 7 | }l; 8 | if((l.m=j)==j)abort(); 9 | exit(0); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921019-1.c: -------------------------------------------------------------------------------- 1 | void *foo[]={(void *)&("X"[0])}; 2 | 3 | main () 4 | { 5 | if (((char*)foo[0])[0] != 'X') 6 | abort (); 7 | exit (0); 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/mod-1.c: -------------------------------------------------------------------------------- 1 | f (x, y) 2 | { 3 | if (x % y != 0) 4 | abort (); 5 | } 6 | 7 | main () 8 | { 9 | f (-5, 5); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /_tcl8.6.8/generic/README: -------------------------------------------------------------------------------- 1 | This directory contains Tcl source files that work on all the platforms 2 | where Tcl runs (e.g. UNIX, PCs, and MacOSX). Platform-specific 3 | sources are in the directories ../unix, ../win, and ../macosx. 4 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmara) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmera) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Bamako) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Banjul) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Bissau) { 4 | {-9223372036854775808 -3740 0 LMT} 5 | {-1830380260 -3600 0 -01} 6 | {157770000 0 0 GMT} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Blantyre) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Dakar) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Gaborone) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Harare: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Harare) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Kigali) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Kinshasa) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lusaka) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ashgabat)]} { 3 | LoadTimeZoneFile Asia/Ashgabat 4 | } 5 | set TZData(:Asia/Ashkhabad) $TZData(:Asia/Ashgabat) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chongqing) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chungking) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kabul) { 4 | {-9223372036854775808 16608 0 LMT} 5 | {-2524538208 14400 0 +04} 6 | {-788932800 16200 0 +0430} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kathmandu)]} { 3 | LoadTimeZoneFile Asia/Kathmandu 4 | } 5 | set TZData(:Asia/Katmandu) $TZData(:Asia/Kathmandu) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Phnom_Penh) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Asia/Tel_Aviv) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Thimphu) { 4 | {-9223372036854775808 21516 0 LMT} 5 | {-706341516 19800 0 +0530} 6 | {560025000 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Atlantic/Jan_Mayen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Belfast) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Busingen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Busingen) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Guernsey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Guernsey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Jersey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Jersey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/San_Marino: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/San_Marino) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Iceland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Reykjavik)]} { 3 | LoadTimeZoneFile Atlantic/Reykjavik 4 | } 5 | set TZData(:Iceland) $TZData(:Atlantic/Reykjavik) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Comoro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Comoro) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kwajalein)]} { 3 | LoadTimeZoneFile Pacific/Kwajalein 4 | } 5 | set TZData(:Kwajalein) $TZData(:Pacific/Kwajalein) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:SystemV/CST6) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Alaska: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:US/Alaska) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Arizona: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:US/Arizona) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:US/Central) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:US/Eastern) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Hawaii: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:US/Hawaii) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Michigan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Detroit)]} { 3 | LoadTimeZoneFile America/Detroit 4 | } 5 | set TZData(:US/Michigan) $TZData(:America/Detroit) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:US/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Brazzaville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Brazzaville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Bujumbura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Bujumbura) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Conakry) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Djibouti) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Freetown) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Kampala) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Libreville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Libreville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Lubumbashi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lubumbashi) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Mogadishu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Mogadishu) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Porto-Novo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Porto-Novo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Sao_Tome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Timbuktu) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Aruba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Aruba) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Cayman: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Cayman) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Shiprock: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:America/Shiprock) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/Mawson: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Mawson) { 4 | {-9223372036854775808 0 0 -00} 5 | {-501206400 21600 0 +06} 6 | {1255809600 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Arctic/Longyearbyen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Arctic/Longyearbyen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Bangkok) { 4 | {-9223372036854775808 24124 0 LMT} 5 | {-2840164924 24124 0 BMT} 6 | {-1570084924 25200 0 +07} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Brunei) { 4 | {-9223372036854775808 27580 0 LMT} 5 | {-1383464380 27000 0 +0730} 6 | {-1167636600 28800 0 +08} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Asia/Istanbul) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ho_Chi_Minh)]} { 3 | LoadTimeZoneFile Asia/Ho_Chi_Minh 4 | } 5 | set TZData(:Asia/Saigon) $TZData(:Asia/Ho_Chi_Minh) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Faroe)]} { 3 | LoadTimeZoneFile Atlantic/Faroe 4 | } 5 | set TZData(:Atlantic/Faeroe) $TZData(:Atlantic/Faroe) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/ACT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/ACT) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/NSW: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/NSW) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Perth)]} { 3 | LoadTimeZoneFile Australia/Perth 4 | } 5 | set TZData(:Australia/West) $TZData(:Australia/Perth) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Brazil/East: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Sao_Paulo)]} { 3 | LoadTimeZoneFile America/Sao_Paulo 4 | } 5 | set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:Canada/Eastern) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Bratislava: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Prague)]} { 3 | LoadTimeZoneFile Europe/Prague 4 | } 5 | set TZData(:Europe/Bratislava) $TZData(:Europe/Prague) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Skopje: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Skopje) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Zagreb: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Zagreb) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Chagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Chagos) { 4 | {-9223372036854775808 17380 0 LMT} 5 | {-1988167780 18000 0 +05} 6 | {820436400 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Mayotte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Mayotte) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Majuro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Majuro) { 4 | {-9223372036854775808 41088 0 LMT} 5 | {-2177493888 39600 0 +11} 6 | {-7988400 43200 0 +12} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Ponape: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pohnpei)]} { 3 | LoadTimeZoneFile Pacific/Pohnpei 4 | } 5 | set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:SystemV/MST7) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Gambier)]} { 3 | LoadTimeZoneFile Pacific/Gambier 4 | } 5 | set TZData(:SystemV/YST9) $TZData(:Pacific/Gambier) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.2-8.h: -------------------------------------------------------------------------------- 1 | #if VERSION == 1 2 | #define INCFILE "vers1.h" 3 | #elif VERSION == 2 4 | #define INCFILE "vers2.h" // and so on 5 | #else 6 | #define INCFILE "versN.h" 7 | #endif 8 | #include INCFILE 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20000227-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cznic/sqlite2go/HEAD/internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20000227-1.c -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20001112-1.c: -------------------------------------------------------------------------------- 1 | int main () 2 | { 3 | long long i = 1; 4 | 5 | i = i * 2 + 1; 6 | 7 | if (i != 3) 8 | abort (); 9 | exit (0); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921007-1.c: -------------------------------------------------------------------------------- 1 | static int strcmp(){return-1;} 2 | #define strcmp __builtin_strcmp 3 | main() 4 | { 5 | if(strcmp("X","X\376")>=0)abort(); 6 | exit(0); 7 | } 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/960219-1.c: -------------------------------------------------------------------------------- 1 | f (int i) 2 | { 3 | if (((1 << i) & 1) == 0) 4 | abort (); 5 | } 6 | 7 | main () 8 | { 9 | f (0); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/980602-1.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | int i; 4 | for (i = 1; i < 100; i++) 5 | ; 6 | if (i == 100) 7 | exit (0); 8 | abort (); 9 | } 10 | 11 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Addis_Ababa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Addis_Ababa) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Nouakchott: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Nouakchott) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Ouagadougou: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Ouagadougou) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Cayenne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Cayenne) { 4 | {-9223372036854775808 -12560 0 LMT} 5 | {-1846269040 -14400 0 -04} 6 | {-71092800 -10800 0 -03} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Ensenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Ensenada) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Montreal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Montreal) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Panama: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Panama) { 4 | {-9223372036854775808 -19088 0 LMT} 5 | {-2524502512 -19176 0 CMT} 6 | {-1946918424 -18000 0 EST} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Kathmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kathmandu) { 4 | {-9223372036854775808 20476 0 LMT} 5 | {-1577943676 19800 0 +0530} 6 | {504901800 20700 0 +0545} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Makassar)]} { 3 | LoadTimeZoneFile Asia/Makassar 4 | } 5 | set TZData(:Asia/Ujung_Pandang) $TZData(:Asia/Makassar) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ulaanbaatar)]} { 3 | LoadTimeZoneFile Asia/Ulaanbaatar 4 | } 5 | set TZData(:Asia/Ulan_Bator) $TZData(:Asia/Ulaanbaatar) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Atlantic/St_Helena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Atlantic/St_Helena) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/North: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Darwin)]} { 3 | LoadTimeZoneFile Australia/Darwin 4 | } 5 | set TZData(:Australia/North) $TZData(:Australia/Darwin) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:Brazil/Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Brazil/DeNoronha: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Noronha)]} { 3 | LoadTimeZoneFile America/Noronha 4 | } 5 | set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:Canada/Atlantic) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Winnipeg)]} { 3 | LoadTimeZoneFile America/Winnipeg 4 | } 5 | set TZData(:Canada/Central) $TZData(:America/Winnipeg) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Edmonton)]} { 3 | LoadTimeZoneFile America/Edmonton 4 | } 5 | set TZData(:Canada/Mountain) $TZData(:America/Edmonton) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Vancouver)]} { 3 | LoadTimeZoneFile America/Vancouver 4 | } 5 | set TZData(:Canada/Pacific) $TZData(:America/Vancouver) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Whitehorse)]} { 3 | LoadTimeZoneFile America/Whitehorse 4 | } 5 | set TZData(:Canada/Yukon) $TZData(:America/Whitehorse) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Chile/EasterIsland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Easter)]} { 3 | LoadTimeZoneFile Pacific/Easter 4 | } 5 | set TZData(:Chile/EasterIsland) $TZData(:Pacific/Easter) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Isle_of_Man: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Isle_of_Man) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Ljubljana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Ljubljana) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Mariehamn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Helsinki)]} { 3 | LoadTimeZoneFile Europe/Helsinki 4 | } 5 | set TZData(:Europe/Mariehamn) $TZData(:Europe/Helsinki) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Podgorica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Podgorica) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Sarajevo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Sarajevo) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Europe/Tiraspol: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Chisinau)]} { 3 | LoadTimeZoneFile Europe/Chisinau 4 | } 5 | set TZData(:Europe/Tiraspol) $TZData(:Europe/Chisinau) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Maldives: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Maldives) { 4 | {-9223372036854775808 17640 0 LMT} 5 | {-2840158440 17640 0 MMT} 6 | {-315636840 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Mexico/BajaNorte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:Mexico/BajaNorte) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Mexico/BajaSur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mazatlan)]} { 3 | LoadTimeZoneFile America/Mazatlan 4 | } 5 | set TZData(:Mexico/BajaSur) $TZData(:America/Mazatlan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Fakaofo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Fakaofo) { 4 | {-9223372036854775808 -41096 0 LMT} 5 | {-2177411704 -39600 0 -11} 6 | {1325242800 46800 0 +13} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Midway: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Midway) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/AST4ADT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:SystemV/AST4ADT) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/CST6CDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:SystemV/CST6CDT) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/HST10: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:SystemV/HST10) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/MST7MDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:SystemV/MST7MDT) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pitcairn)]} { 3 | LoadTimeZoneFile Pacific/Pitcairn 4 | } 5 | set TZData(:SystemV/PST8) $TZData(:Pacific/Pitcairn) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/mbstate_t.h: -------------------------------------------------------------------------------- 1 | #ifndef __mbstate_t_defined 2 | #define __mbstate_t_defined 1 3 | 4 | #include 5 | 6 | typedef __mbstate_t mbstate_t; 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20000519-2.c: -------------------------------------------------------------------------------- 1 | long x = -1L; 2 | 3 | int main() 4 | { 5 | long b = (x != -1L); 6 | 7 | if (b) 8 | abort(); 9 | 10 | exit(0); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20040706-1.c: -------------------------------------------------------------------------------- 1 | int main () 2 | { 3 | int i; 4 | for (i = 0; i < 10; i++) 5 | continue; 6 | if (i < 10) 7 | abort (); 8 | exit (0); 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20091229-1.c: -------------------------------------------------------------------------------- 1 | long long foo(long long v) { return v / -0x080000000LL; } 2 | int main(int argc, char **argv) { if (foo(0x080000000LL) != -1) abort(); exit (0); } 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920415-1.c: -------------------------------------------------------------------------------- 1 | #ifndef NO_LABEL_VALUES 2 | main(){__label__ l;void*x(){return&&l;}goto*x();abort();return;l:exit(0);} 3 | #else 4 | main(){ exit (0); } 5 | #endif 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/50_logical_second_arg.expect: -------------------------------------------------------------------------------- 1 | fred 2 | 0 3 | fred 4 | joe 5 | 1 6 | joe 7 | fred 8 | 0 9 | joe 10 | 1 11 | fred 12 | 0 13 | fred 14 | joe 15 | 1 16 | joe 17 | fred 18 | 0 19 | joe 20 | 1 21 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Dar_es_Salaam) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Maseru) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Curacao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Curacao) { 4 | {-9223372036854775808 -16547 0 LMT} 5 | {-1826738653 -16200 0 -0430} 6 | {-157750200 -14400 0 AST} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Kralendijk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Kralendijk) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/McMurdo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/McMurdo) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/Canberra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/Canberra) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/LHI: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Lord_Howe)]} { 3 | LoadTimeZoneFile Australia/Lord_Howe 4 | } 5 | set TZData(:Australia/LHI) $TZData(:Australia/Lord_Howe) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/South: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Adelaide)]} { 3 | LoadTimeZoneFile Australia/Adelaide 4 | } 5 | set TZData(:Australia/South) $TZData(:Australia/Adelaide) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/Tasmania: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Tasmania) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Chile/Continental: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Santiago)]} { 3 | LoadTimeZoneFile America/Santiago 4 | } 5 | set TZData(:Chile/Continental) $TZData(:America/Santiago) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Indian/Antananarivo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Antananarivo) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Johnston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:Pacific/Johnston) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Pago_Pago: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pago_Pago) { 4 | {-9223372036854775808 45432 0 LMT} 5 | {-2445424632 -40968 0 LMT} 6 | {-1861879032 -39600 0 SST} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Pitcairn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pitcairn) { 4 | {-9223372036854775808 -31220 0 LMT} 5 | {-2177421580 -30600 0 -0830} 6 | {893665800 -28800 0 -08} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:SystemV/AST4) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/EST5EDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:SystemV/EST5EDT) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/YST9YDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:SystemV/YST9YDT) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-9.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fprintf(stderr, "Flag"); 5 | fprintf(stderr, "X = %d\n", x); 6 | puts("The first, second, and third items."); 7 | ((x>y)?puts("x>y"): printf("x is %d but y is %d", x, y)); 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20001027-1.c: -------------------------------------------------------------------------------- 1 | int x,*p=&x; 2 | 3 | int main() 4 | { 5 | int i=0; 6 | x=1; 7 | p[i]=2; 8 | if (x != 2) 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20140326-1.c: -------------------------------------------------------------------------------- 1 | int a; 2 | 3 | int 4 | main (void) 5 | { 6 | char e[2] = { 0, 0 }, f = 0; 7 | if (a == 131072) 8 | f = e[a]; 9 | return f; 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/950605-1.c: -------------------------------------------------------------------------------- 1 | f (c) 2 | unsigned char c; 3 | { 4 | if (c != 0xFF) 5 | abort (); 6 | } 7 | 8 | main () 9 | { 10 | f (-1); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/970217-1.c: -------------------------------------------------------------------------------- 1 | sub (int i, int array[i++]) 2 | { 3 | return i; 4 | } 5 | 6 | main() 7 | { 8 | int array[10]; 9 | exit (sub (10, array) != 11); 10 | } 11 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Mbabane) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Lower_Princes: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Lower_Princes) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Santa_Isabel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Santa_Isabel) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/Newfoundland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/St_Johns)]} { 3 | LoadTimeZoneFile America/St_Johns 4 | } 5 | set TZData(:Canada/Newfoundland) $TZData(:America/St_Johns) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Mexico/General: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mexico_City)]} { 3 | LoadTimeZoneFile America/Mexico_City 4 | } 5 | set TZData(:Mexico/General) $TZData(:America/Mexico_City) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Port_Moresby: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Port_Moresby) { 4 | {-9223372036854775808 35320 0 LMT} 5 | {-2840176120 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | } 8 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indianapolis 4 | } 5 | set TZData(:SystemV/EST5) $TZData(:America/Indianapolis) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Pacific-New: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific-New) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920429-1.c: -------------------------------------------------------------------------------- 1 | typedef unsigned char t;int i,j; 2 | t*f(t*p){t c;c=*p++;i=((c&2)?1:0);j=(c&7)+1;return p;} 3 | main(){t*p0="ab",*p1;p1=f(p0);if(p0+1!=p1)abort();exit(0);} 4 | -------------------------------------------------------------------------------- /_sqlite/ext/fts1/fts1.h: -------------------------------------------------------------------------------- 1 | #include "sqlite3.h" 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif /* __cplusplus */ 6 | 7 | int sqlite3Fts1Init(sqlite3 *db); 8 | 9 | #ifdef __cplusplus 10 | } /* extern "C" */ 11 | #endif /* __cplusplus */ 12 | -------------------------------------------------------------------------------- /_sqlite/ext/fts1/fulltext.h: -------------------------------------------------------------------------------- 1 | #include "sqlite3.h" 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif /* __cplusplus */ 6 | 7 | int fulltext_init(sqlite3 *db); 8 | 9 | #ifdef __cplusplus 10 | } /* extern "C" */ 11 | #endif /* __cplusplus */ 12 | -------------------------------------------------------------------------------- /_sqlite/ext/fts2/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains source code to the second full-text search 2 | extension for SQLite. While the API is the same, this version uses a 3 | substantially different storage schema from fts1, so tables will need 4 | to be rebuilt. 5 | -------------------------------------------------------------------------------- /_sqlite/ext/fts3/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains source code to the second full-text search 2 | extension for SQLite. While the API is the same, this version uses a 3 | substantially different storage schema from fts1, so tables will need 4 | to be rebuilt. 5 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Antigua: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Antigua) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Coral_Harbour: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Atikokan)]} { 3 | LoadTimeZoneFile America/Atikokan 4 | } 5 | set TZData(:America/Coral_Harbour) $TZData(:America/Atikokan) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Grenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Grenada) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:America/Knox_IN) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Marigot: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Marigot) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Porto_Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:America/Porto_Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Tortola: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Tortola) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Virgin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Virgin) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/South_Pole: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/South_Pole) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/Queensland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Brisbane)]} { 3 | LoadTimeZoneFile Australia/Brisbane 4 | } 5 | set TZData(:Australia/Queensland) $TZData(:Australia/Brisbane) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/Victoria: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Melbourne)]} { 3 | LoadTimeZoneFile Australia/Melbourne 4 | } 5 | set TZData(:Australia/Victoria) $TZData(:Australia/Melbourne) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Canada/East-Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/East-Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/SystemV/PST8PDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:SystemV/PST8PDT) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/US/Indiana-Starke: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:US/Indiana-Starke) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/time_t.h: -------------------------------------------------------------------------------- 1 | #ifndef __time_t_defined 2 | #define __time_t_defined 1 3 | 4 | #include 5 | 6 | /* Returned by `time'. */ 7 | typedef __time_t time_t; 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_amd64/usr/include/bits/endian.h: -------------------------------------------------------------------------------- 1 | /* i386/x86_64 are little-endian. */ 2 | 3 | #ifndef _ENDIAN_H 4 | # error "Never use directly; include instead." 5 | #endif 6 | 7 | #define __BYTE_ORDER __LITTLE_ENDIAN 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20010222-1.c: -------------------------------------------------------------------------------- 1 | int a[2] = { 18, 6 }; 2 | 3 | int main () 4 | { 5 | int b = (-3 * a[0] -3 * a[1]) / 12; 6 | if (b != -6) 7 | abort (); 8 | exit (0); 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20011217-1.c: -------------------------------------------------------------------------------- 1 | int 2 | main() 3 | { 4 | double x = 1.0; 5 | double y = 2.0; 6 | 7 | if ((y > x--) != 1) 8 | abort (); 9 | exit (0); 10 | } 11 | 12 | 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/16_nesting.expect: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | 0 0 1 3 | 0 0 2 4 | 0 1 0 5 | 0 1 1 6 | 0 1 2 7 | 0 2 0 8 | 0 2 1 9 | 0 2 2 10 | 1 0 0 11 | 1 0 1 12 | 1 0 2 13 | 1 1 0 14 | 1 1 1 15 | 1 1 2 16 | 1 2 0 17 | 1 2 1 18 | 1 2 2 19 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/23_type_coercion.expect: -------------------------------------------------------------------------------- 1 | char: a 2 | char: b 3 | char: c 4 | int: 97 5 | int: 98 6 | int: 99 7 | float: 97.000000 8 | float: 98.000000 9 | float: 99.000000 10 | 97 97 11 | 97 97 12 | 97.000000 97.000000 13 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/nintendods/README: -------------------------------------------------------------------------------- 1 | This Makefile requires devkitARM (http://www.devkitpro.org/category/devkitarm/) and works inside "contrib/nds". It is based on a devkitARM template. 2 | 3 | Eduardo Costa 4 | January 3, 2009 5 | 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Anguilla: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Anguilla) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Dominica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Dominica) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Guadeloupe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Guadeloupe) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Jujuy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Jujuy)]} { 3 | LoadTimeZoneFile America/Argentina/Jujuy 4 | } 5 | set TZData(:America/Jujuy) $TZData(:America/Argentina/Jujuy) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Montserrat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Montserrat) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/St_Kitts: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Kitts) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/St_Lucia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Lucia) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/St_Thomas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Thomas) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/St_Vincent: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Vincent) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/clock_t.h: -------------------------------------------------------------------------------- 1 | #ifndef __clock_t_defined 2 | #define __clock_t_defined 1 3 | 4 | #include 5 | 6 | /* Returned by `clock'. */ 7 | typedef __clock_t clock_t; 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20010605-1.c: -------------------------------------------------------------------------------- 1 | int main () 2 | { 3 | int v = 42; 4 | 5 | inline int fff (int x) 6 | { 7 | return x*10; 8 | } 9 | 10 | return (fff (v) != 420); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20020911-1.c: -------------------------------------------------------------------------------- 1 | extern void abort (void); 2 | unsigned short c = 0x8000; 3 | int main() 4 | { 5 | if ((c-0x8000) < 0 || (c-0x8000) > 0x7fff) 6 | abort(); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920501-1.c: -------------------------------------------------------------------------------- 1 | /* { dg-require-effective-target untyped_assembly } */ 2 | int s[2]; 3 | x(){if(!s[0]){s[1+s[1]]=s[1];return 1;}} 4 | main(){s[0]=s[1]=0;if(x(0)!=1)abort();exit(0);} 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921218-1.c: -------------------------------------------------------------------------------- 1 | f() 2 | { 3 | return (unsigned char)("\377"[0]); 4 | } 5 | 6 | main() 7 | { 8 | if (f() != (unsigned char)(0377)) 9 | abort(); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | `github.com/cznic/sqlite2go` has moved to [`modernc.org/sqlite2go`](https://godoc.org/modernc.org/sqlite2go) ([vcs](https://gitlab.com/cznic/sqlite2go)). 2 | 3 | Please update your import paths to `modernc.org/sqlite2go`. 4 | 5 | This repo is now archived. 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Monrovia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Monrovia) { 4 | {-9223372036854775808 -2588 0 LMT} 5 | {-2776979812 -2588 0 MMT} 6 | {-1604359012 -2670 0 MMT} 7 | {63593070 0 0 GMT} 8 | } 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Africa/Ndjamena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Ndjamena) { 4 | {-9223372036854775808 3612 0 LMT} 5 | {-1830387612 3600 0 WAT} 6 | {308703600 7200 1 WAST} 7 | {321314400 3600 0 WAT} 8 | } 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Australia/Yancowinna: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Broken_Hill)]} { 3 | LoadTimeZoneFile Australia/Broken_Hill 4 | } 5 | set TZData(:Australia/Yancowinna) $TZData(:Australia/Broken_Hill) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Guam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guam) { 4 | {-9223372036854775808 -51660 0 LMT} 5 | {-3944626740 34740 0 LMT} 6 | {-2177487540 36000 0 GST} 7 | {977493600 36000 0 ChST} 8 | } 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Kosrae: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kosrae) { 4 | {-9223372036854775808 39116 0 LMT} 5 | {-2177491916 39600 0 +11} 6 | {-7988400 43200 0 +12} 7 | {915105600 39600 0 +11} 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20040208-1.c: -------------------------------------------------------------------------------- 1 | int main () 2 | { 3 | long double x; 4 | 5 | x = 0x1.0p-500L; 6 | x *= 0x1.0p-522L; 7 | if (x != 0x1.0p-1022L) 8 | abort (); 9 | exit (0); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920604-1.c: -------------------------------------------------------------------------------- 1 | long long 2 | mod (a, b) 3 | long long a, b; 4 | { 5 | return a % b; 6 | } 7 | 8 | int 9 | main () 10 | { 11 | mod (1LL, 2LL); 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930527-1.c: -------------------------------------------------------------------------------- 1 | f (unsigned char x) 2 | { 3 | return (0x50 | (x >> 4)) ^ 0xff; 4 | } 5 | 6 | main () 7 | { 8 | if (f (0) != 0xaf) 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/961112-1.c: -------------------------------------------------------------------------------- 1 | f (x) 2 | { 3 | if (x != 0 || x == 0) 4 | return 0; 5 | return 1; 6 | } 7 | 8 | main () 9 | { 10 | if (f (3)) 11 | abort (); 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/961122-2.c: -------------------------------------------------------------------------------- 1 | int 2 | f (int a) 3 | { 4 | return ((a >= 0 && a <= 10) && ! (a >= 0)); 5 | } 6 | 7 | main () 8 | { 9 | if (f (0)) 10 | abort (); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr58387.c: -------------------------------------------------------------------------------- 1 | extern void abort(void); 2 | 3 | int a = -1; 4 | 5 | int main () 6 | { 7 | int b = a == 0 ? 0 : -a; 8 | if (b < 1) 9 | abort (); 10 | return 0; 11 | } 12 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Cordoba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Cordoba) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Mendoza: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Mendoza)]} { 3 | LoadTimeZoneFile America/Argentina/Mendoza 4 | } 5 | set TZData(:America/Mendoza) $TZData(:America/Argentina/Mendoza) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Rosario: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Rosario) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/St_Barthelemy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Barthelemy) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Jayapura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Jayapura) { 4 | {-9223372036854775808 33768 0 LMT} 5 | {-1172913768 32400 0 +09} 6 | {-799491600 34200 0 +0930} 7 | {-189423000 32400 0 WIT} 8 | } 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Niue: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Niue) { 4 | {-9223372036854775808 -40780 0 LMT} 5 | {-2177412020 -40800 0 -1120} 6 | {-599575200 -41400 0 -1130} 7 | {276089400 -39600 0 -11} 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/endian.h: -------------------------------------------------------------------------------- 1 | /* i386/x86_64 are little-endian. */ 2 | 3 | #ifndef _ENDIAN_H 4 | #error "Never use directly; include instead." 5 | #endif 6 | 7 | #define __BYTE_ORDER __LITTLE_ENDIAN 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20030128-1.c: -------------------------------------------------------------------------------- 1 | unsigned char x = 50; 2 | volatile short y = -5; 3 | 4 | int main () 5 | { 6 | x /= y; 7 | if (x != (unsigned char) -10) 8 | abort (); 9 | exit (0); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920612-1.c: -------------------------------------------------------------------------------- 1 | /* { dg-options "-fwrapv" } */ 2 | 3 | extern void abort (void); 4 | extern void exit (int); 5 | 6 | int f(j)int j;{return++j>0;} 7 | int main(){if(f((~0U)>>1))abort();exit(0);} 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930916-1.c: -------------------------------------------------------------------------------- 1 | f (n) 2 | unsigned n; 3 | { 4 | if ((int) n >= 0) 5 | abort (); 6 | } 7 | 8 | main () 9 | { 10 | unsigned x = ~0; 11 | f (x); 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/complex-4.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | if ((__complex__ double) 0.0 != (__complex__ double) (-0.0)) 4 | abort (); 5 | 6 | if (0.0 != -0.0) 7 | abort (); 8 | exit (0); 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/inst-check.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | f(m) 4 | { 5 | int i,s=0; 6 | for(i=0;i 5 | 6 | /* Timer ID returned by `timer_create'. */ 7 | typedef __timer_t timer_t; 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/bug/10.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define __mingw_choose_expr __builtin_choose_expr 4 | 5 | int main() { 6 | int i = __mingw_choose_expr(0, 2, 3); 7 | int j = __mingw_choose_expr(1, 2, 3); 8 | assert(i == 3); 9 | assert(j == 2); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-8.h: -------------------------------------------------------------------------------- 1 | #define OBJ_LIKE (1-1) 2 | #define OBJ_LIKE /* white space */ (1-1) /* other */ 3 | #define FUNC_LIKE(a) ( a ) 4 | #define FUNC_LIKE( a ) ( /* note the white space */ \ 5 | a /* other stuff on this line 6 | */ ) 7 | ok 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921123-1.c: -------------------------------------------------------------------------------- 1 | f(short *p) 2 | { 3 | short x = *p; 4 | return (--x < 0); 5 | } 6 | 7 | main() 8 | { 9 | short x = -10; 10 | if (!f(&x)) 11 | abort(); 12 | exit(0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930429-2.c: -------------------------------------------------------------------------------- 1 | int 2 | f (b) 3 | { 4 | return (b >> 1) > 0; 5 | } 6 | 7 | main () 8 | { 9 | if (!f (9)) 10 | abort (); 11 | if (f (-9)) 12 | abort (); 13 | exit (0); 14 | } 15 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/950607-1.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | struct { long status; } h; 4 | 5 | h.status = 0; 6 | if (((h.status & 128) == 1) && ((h.status & 32) == 0)) 7 | abort (); 8 | exit (0); 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/950906-1.c: -------------------------------------------------------------------------------- 1 | g (int i) 2 | { 3 | } 4 | 5 | f (int i) 6 | { 7 | g (0); 8 | while ( ({ i--; }) ) 9 | g (0); 10 | } 11 | 12 | main () 13 | { 14 | f (10); 15 | exit (0); 16 | } 17 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/bf-layout-1.c: -------------------------------------------------------------------------------- 1 | struct { long f8:8; long f24:24; } a; 2 | struct { long f32:32; } b; 3 | 4 | main () 5 | { 6 | if (sizeof (a) != sizeof (b)) 7 | abort (); 8 | exit (0); 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr23941.c: -------------------------------------------------------------------------------- 1 | extern void abort (void); 2 | double d = __FLT_MIN__ / 2.0; 3 | int main() 4 | { 5 | double x = __FLT_MIN__ / 2.0; 6 | if (x != d) 7 | abort (); 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr42570.c: -------------------------------------------------------------------------------- 1 | typedef unsigned char uint8_t; 2 | uint8_t foo[1][0]; 3 | extern void abort (void); 4 | int main() 5 | { 6 | if (sizeof (foo) != 0) 7 | abort (); 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr61306-3.c: -------------------------------------------------------------------------------- 1 | short a = -1; 2 | int b; 3 | char c; 4 | 5 | int 6 | main () 7 | { 8 | c = a; 9 | b = a | c; 10 | if (b != -1) 11 | __builtin_abort (); 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr71335.c: -------------------------------------------------------------------------------- 1 | int a; 2 | int 3 | main () 4 | { 5 | int b = 0; 6 | while (a < 0 || b) 7 | { 8 | b = 0; 9 | for (; b < 9; b++) 10 | ; 11 | } 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Catamarca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Catamarca) $TZData(:America/Argentina/Catamarca) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Louisville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Kentucky/Louisville)]} { 3 | LoadTimeZoneFile America/Kentucky/Louisville 4 | } 5 | set TZData(:America/Louisville) $TZData(:America/Kentucky/Louisville) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/DumontDUrville) { 4 | {-9223372036854775808 0 0 -00} 5 | {-725846400 36000 0 +10} 6 | {-566992800 0 0 -00} 7 | {-415497600 36000 0 +10} 8 | } 9 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Pacific/Kiritimati: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kiritimati) { 4 | {-9223372036854775808 -37760 0 LMT} 5 | {-2177415040 -38400 0 -1040} 6 | {307622400 -36000 0 -10} 7 | {788954400 50400 0 +14} 8 | } 9 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.3-4.h: -------------------------------------------------------------------------------- 1 | #define hash_hash # ## # 2 | #define mkstr(a) # a 3 | #define in_between(a) mkstr(a) 4 | #define join(c, d) in_between(c hash_hash d) 5 | char p[] = join(x, y); // equivalent to 6 | // char p[] = "x ## y"; 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-6.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | printf("x" "1" "= %d, x" "2" "= %s", x1, x2); 11 | fputs("strncmp(\"abc\\0d\", \"abc\", '\\4') == 0" ": @\n", s); 12 | "vers2.h" 13 | "hello"; 14 | "hello" ", world" 15 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20000717-2.c: -------------------------------------------------------------------------------- 1 | static void 2 | compare (long long foo) 3 | { 4 | if (foo < 4294967297LL) 5 | abort(); 6 | } 7 | int main(void) 8 | { 9 | compare (8589934591LL); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20011114-1.c: -------------------------------------------------------------------------------- 1 | char foo(char bar[]) 2 | { 3 | return bar[1]; 4 | } 5 | extern char foo(char *); 6 | int main(void) 7 | { 8 | if (foo("xy") != 'y') 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920711-1.c: -------------------------------------------------------------------------------- 1 | /* { dg-options "-fwrapv" } */ 2 | 3 | extern void abort (void); 4 | extern void exit (int); 5 | 6 | int f(long a){return (--a > 0);} 7 | int main(){if(f(0x80000000L)==0)abort();exit(0);} 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921207-1.c: -------------------------------------------------------------------------------- 1 | f() 2 | { 3 | unsigned b = 0; 4 | 5 | if (b > ~0U) 6 | b = ~0U; 7 | 8 | return b; 9 | } 10 | main() 11 | { 12 | if (f()!=0) 13 | abort(); 14 | exit (0); 15 | } 16 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/931110-2.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | static int a[] = {3, 4}; 4 | register int *b; 5 | int c; 6 | 7 | b = a; 8 | c = *b++ % 8; 9 | if (c != 3) 10 | abort (); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/960402-1.c: -------------------------------------------------------------------------------- 1 | f (signed long long int x) 2 | { 3 | return x > 0xFFFFFFFFLL || x < -0x80000000LL; 4 | } 5 | 6 | main () 7 | { 8 | if (f (0) != 0) 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/18_include.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("including\n"); 6 | #include "18_include.h" 7 | printf("done\n"); 8 | 9 | return 0; 10 | } 11 | 12 | /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/ 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/43_void_param.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void fred(void) 4 | { 5 | printf("yo\n"); 6 | } 7 | 8 | int main() 9 | { 10 | fred(); 11 | 12 | return 0; 13 | } 14 | 15 | /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/ 16 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Fort_Wayne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Fort_Wayne) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Indianapolis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Indianapolis) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /_tcl8.6.8/unix/dltest/README: -------------------------------------------------------------------------------- 1 | This directory contains several files for testing Tcl's dynamic 2 | loading/unloading capabilities. If shared libraries are supported 3 | then the build system in the parent directory will create 4 | the shared libs and load them into the tcltest executable. 5 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/4.h.expect: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | "a_os"; 8 | 9 | 10 | 11 | 12 | "a_b_c.h"; 13 | "a_b_c.h"; 14 | "a_linux_amd64.h"; 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | "a_os"; 23 | 24 | "a_b_c.h"; 25 | "a_b_c.h"; 26 | "a_linux_amd64.h"; 27 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20010711-1.c: -------------------------------------------------------------------------------- 1 | void foo (int *a) {} 2 | 3 | int main () 4 | { 5 | int a; 6 | if (&a == 0) 7 | abort (); 8 | else 9 | { 10 | foo (&a); 11 | exit (0); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20011109-2.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | char *c1 = "foo"; 4 | char *c2 = "foo"; 5 | int i; 6 | for (i = 0; i < 3; i++) 7 | if (c1[i] != c2[i]) 8 | abort (); 9 | exit (0); 10 | } 11 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920410-1.c: -------------------------------------------------------------------------------- 1 | #define STACK_REQUIREMENT (40000 * 4 + 256) 2 | #if defined (STACK_SIZE) && STACK_SIZE < STACK_REQUIREMENT 3 | main () { exit (0); } 4 | #else 5 | main(){int d[40000];d[0]=0;exit(0);} 6 | #endif 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/920909-1.c: -------------------------------------------------------------------------------- 1 | f(a){switch(a){case 0x402:return a+1;case 0x403:return a+2;case 0x404:return a+3;case 0x405:return a+4;case 0x406:return 1;case 0x407:return 4;}return 0;} 2 | main(){if(f(1))abort();exit(0);} 3 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/921202-2.c: -------------------------------------------------------------------------------- 1 | int 2 | f(long long x) 3 | { 4 | x >>= 8; 5 | return x & 0xff; 6 | } 7 | 8 | main() 9 | { 10 | if (f(0x0123456789ABCDEFLL) != 0xCD) 11 | abort(); 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/931012-1.c: -------------------------------------------------------------------------------- 1 | f (int b, int c) 2 | { 3 | if (b != 0 && b != 1 && c != 0) 4 | b = 0; 5 | return b; 6 | } 7 | 8 | main () 9 | { 10 | if (!f (1, 2)) 11 | abort(); 12 | exit(0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/align-1.c: -------------------------------------------------------------------------------- 1 | typedef int new_int __attribute__ ((aligned(16))); 2 | struct S { int x; }; 3 | 4 | int main() 5 | { 6 | if (sizeof(struct S) != sizeof(int)) 7 | abort (); 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/packed-2.c: -------------------------------------------------------------------------------- 1 | typedef struct s { 2 | unsigned short a; 3 | unsigned long b __attribute__ ((packed)); 4 | } s; 5 | 6 | s t; 7 | 8 | int main() 9 | { 10 | t.b = 0; 11 | return 0; 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/widechar-1.c: -------------------------------------------------------------------------------- 1 | #define C L'\400' 2 | 3 | #if C 4 | #define zero (!C) 5 | #else 6 | #define zero C 7 | #endif 8 | 9 | main() 10 | { 11 | if (zero != 0) 12 | abort (); 13 | exit (0); 14 | } 15 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/encoding/iso2022-jp.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-jp, escape-driven 2 | E 3 | name iso2022-jp 4 | init {} 5 | final {} 6 | ascii \x1b(B 7 | jis0201 \x1b(J 8 | jis0208 \x1b$B 9 | jis0208 \x1b$@ 10 | jis0212 \x1b$(D 11 | gb2312 \x1b$A 12 | ksc5601 \x1b$(C 13 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_ar.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_AR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_AR TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset es_AR DATE_TIME_FORMAT "%d/%m/%Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/ru_ua.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ru_UA DATE_FORMAT "%d.%m.%Y" 4 | ::msgcat::mcset ru_UA TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset ru_UA DATE_TIME_FORMAT "%d.%m.%Y %k:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /internal/c99/README.md: -------------------------------------------------------------------------------- 1 | # c99 2 | 3 | Package CC is a C99 [0] compiler front end (Work In Progress) 4 | 5 | This package is a modification of [1] supporting only SQLite. 6 | 7 | [0] http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf 8 | 9 | [1] https://github.com/cznic/cc 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20001009-1.c: -------------------------------------------------------------------------------- 1 | int a,b; 2 | main() 3 | { 4 | int c=-2; 5 | int d=0xfe; 6 | int e=a&1; 7 | int f=b&2; 8 | if ((char)(c|(e&f)) == (char)d) 9 | return 0; 10 | else 11 | abort(); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930608-1.c: -------------------------------------------------------------------------------- 1 | double f (double a) {} 2 | double (* const a[]) (double) = {&f}; 3 | 4 | main () 5 | { 6 | double (*p) (); 7 | p = &f; 8 | if (p != a[0]) 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/941025-1.c: -------------------------------------------------------------------------------- 1 | long f (x, y) 2 | long x,y; 3 | { 4 | return (x > 1) ? y : (y & 1); 5 | } 6 | 7 | main () 8 | { 9 | if (f (2L, 0xdecadeL) != 0xdecadeL) 10 | abort (); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/960419-2.c: -------------------------------------------------------------------------------- 1 | #define SIZE 8 2 | 3 | main() 4 | { 5 | int a[SIZE] = {1}; 6 | int i; 7 | 8 | for (i = 1; i < SIZE; i++) 9 | if (a[i] != 0) 10 | abort(); 11 | 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/990324-1.c: -------------------------------------------------------------------------------- 1 | void f(long i) 2 | { 3 | if ((signed char)i < 0 || (signed char)i == 0) 4 | abort (); 5 | else 6 | exit (0); 7 | } 8 | 9 | main() 10 | { 11 | f(0xffffff01); 12 | } 13 | 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/align-3.c: -------------------------------------------------------------------------------- 1 | void func(void) __attribute__((aligned(256))); 2 | 3 | void func(void) 4 | { 5 | } 6 | 7 | int main() 8 | { 9 | if (__alignof__(func) != 256) 10 | abort (); 11 | return 0; 12 | } 13 | -------------------------------------------------------------------------------- /_tcl8.6.8/compat/zlib/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/en_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZA DATE_FORMAT "%Y/%m/%d" 4 | ::msgcat::mcset en_ZA TIME_FORMAT_12 "%I:%M:%S" 5 | ::msgcat::mcset en_ZA DATE_TIME_FORMAT "%Y/%m/%d %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/it_ch.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset it_CH DATE_FORMAT "%e. %B %Y" 4 | ::msgcat::mcset it_CH TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset it_CH DATE_TIME_FORMAT "%e. %B %Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Buenos_Aires: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Buenos_Aires)]} { 3 | LoadTimeZoneFile America/Argentina/Buenos_Aires 4 | } 5 | set TZData(:America/Buenos_Aires) $TZData(:America/Argentina/Buenos_Aires) 6 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/FILE.h: -------------------------------------------------------------------------------- 1 | #ifndef __FILE_defined 2 | #define __FILE_defined 1 3 | 4 | struct _IO_FILE; 5 | 6 | /* The opaque type of streams. This is the definition used elsewhere. */ 7 | typedef struct _IO_FILE FILE; 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /internal/c99/headers/linux_386/usr/include/i386-linux-gnu/bits/types/clockid_t.h: -------------------------------------------------------------------------------- 1 | #ifndef __clockid_t_defined 2 | #define __clockid_t_defined 1 3 | 4 | #include 5 | 6 | /* Clock ID used in clock and timer functions. */ 7 | typedef __clockid_t clockid_t; 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/9.c: -------------------------------------------------------------------------------- 1 | #define TEST42 0x0502 2 | #define TESTBASE 1 3 | #define TEST3 (TEST42 >= 0x0502 || !defined (TESTBASE)) 4 | #define TEST4 5 | 6 | #if TEST3 && defined (TEST4) 7 | int test = 4; 8 | #endif 9 | 10 | 11 | int main (void) { 12 | return test; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930429-1.c: -------------------------------------------------------------------------------- 1 | char * 2 | f (char *p) 3 | { 4 | short x = *p++ << 16; 5 | return p; 6 | } 7 | 8 | main () 9 | { 10 | char *p = ""; 11 | if (f (p) != p + 1) 12 | abort (); 13 | exit (0); 14 | } 15 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/931208-1.c: -------------------------------------------------------------------------------- 1 | f () 2 | { 3 | unsigned long x, y = 1; 4 | 5 | x = ((y * 8192) - 216) / 16; 6 | return x; 7 | } 8 | 9 | main () 10 | { 11 | if (f () != 498) 12 | abort (); 13 | exit (0); 14 | } 15 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/940115-1.c: -------------------------------------------------------------------------------- 1 | f (cp, end) 2 | char *cp; 3 | char *end; 4 | { 5 | return (cp < end); 6 | } 7 | 8 | main () 9 | { 10 | if (! f ((char *) 0, (char *) 1)) 11 | abort(); 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/941101-1.c: -------------------------------------------------------------------------------- 1 | f () 2 | { 3 | int var = 7; 4 | 5 | if ((var/7) == 1) 6 | return var/7; 7 | return 0; 8 | } 9 | 10 | main () 11 | { 12 | if (f () != 1) 13 | abort (); 14 | exit (0); 15 | } 16 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/ffs-1.c: -------------------------------------------------------------------------------- 1 | __volatile int a = 0; 2 | 3 | extern void abort (void); 4 | extern void exit (int); 5 | 6 | int 7 | main (void) 8 | { 9 | if (__builtin_ffs (a) != 0) 10 | abort (); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr34070-1.c: -------------------------------------------------------------------------------- 1 | extern void abort (void); 2 | 3 | int f(unsigned int x) 4 | { 5 | return ((int)x) % 4; 6 | } 7 | 8 | int main() 9 | { 10 | if (f(-1) != -1) 11 | abort (); 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c: -------------------------------------------------------------------------------- 1 | struct s { 2 | int a[3]; 3 | int c[3]; 4 | }; 5 | 6 | struct s s = { 7 | c: {1, 2, 3} 8 | }; 9 | 10 | main() 11 | { 12 | if (s.c[0] != 1) 13 | abort (); 14 | exit (0); 15 | } 16 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/af_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset af_ZA DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset af_ZA TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset af_ZA DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/en_bw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_BW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_BW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_BW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/en_sg.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_SG DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset en_SG TIME_FORMAT_12 "%P %I:%M:%S" 5 | ::msgcat::mcset en_SG DATE_TIME_FORMAT "%d %b %Y %P %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/en_zw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_ZW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_ZW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_bo.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_BO DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_BO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_BO DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_cl.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CL DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_CL TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CL DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_co.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CO DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_CO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CO DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_cr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_CR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CR DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_do.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_DO DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_DO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_DO DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_ec.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_EC DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_EC TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_EC DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_gt.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_GT DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_GT TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_GT DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_hn.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_HN DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_HN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_HN DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_mx.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_MX DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_MX TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_MX DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_ni.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_NI DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_NI TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_NI DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_pa.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PA DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_PA TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PA DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_pe.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_pr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PR DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_PR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PR DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_py.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_sv.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_SV DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_SV TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_SV DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_uy.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_UY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_UY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_UY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/es_ve.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_VE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_VE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_VE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/gl_es.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gl_ES DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gl_ES TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gl_ES DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/gv_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gv_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gv_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gv_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/hi_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset hi_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset hi_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset hi_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/id_id.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset id_ID DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset id_ID TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset id_ID DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/kw_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kw_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset kw_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset kw_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/mr_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset mr_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset mr_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset mr_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/ta_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ta_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset ta_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset ta_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/Asia/Dili: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dili) { 4 | {-9223372036854775808 30140 0 LMT} 5 | {-1830414140 28800 0 +08} 6 | {-879152400 32400 0 +09} 7 | {199897200 28800 0 +08} 8 | {969120000 32400 0 +09} 9 | } 10 | -------------------------------------------------------------------------------- /internal/c99/testdata/cpp-expand/example-6.10.3.5-4.h.expect: -------------------------------------------------------------------------------- 1 | 2 | ((x) > (y) ? (x) : (y)); 3 | (((x)) > (y) ? ((x)) : (y)); 4 | ((x) > ((y)) ? (x) : ((y))); 5 | (((x)) > ((y)) ? ((x)) : ((y))); 6 | (((x, 1)) > (y) ? ((x, 1)) : (y)); 7 | (((x, (1, 3))) > (((y, 4), 2)) ? ((x, (1, 3))) : (((y, 4), 2))); 8 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20000503-1.c: -------------------------------------------------------------------------------- 1 | unsigned long 2 | sub (int a) 3 | { 4 | return ((0 > a - 2) ? 0 : a - 2) * sizeof (long); 5 | } 6 | 7 | main () 8 | { 9 | if (sub (0) != 0) 10 | abort (); 11 | 12 | exit (0); 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20040707-1.c: -------------------------------------------------------------------------------- 1 | struct s { char c1, c2; }; 2 | void foo (struct s s) 3 | { 4 | static struct s s1; 5 | s1 = s; 6 | } 7 | int main () 8 | { 9 | static struct s s2; 10 | foo (s2); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr35390.c: -------------------------------------------------------------------------------- 1 | extern void abort (void); 2 | 3 | unsigned int foo (int n) 4 | { 5 | return ~((unsigned int)~n); 6 | } 7 | 8 | int main() 9 | { 10 | if (foo(0) != 0) 11 | abort (); 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/scope-1.c: -------------------------------------------------------------------------------- 1 | int v = 3; 2 | 3 | f () 4 | { 5 | int v = 4; 6 | { 7 | extern int v; 8 | if (v != 3) 9 | abort (); 10 | } 11 | } 12 | 13 | main () 14 | { 15 | f (); 16 | exit (0); 17 | } 18 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/37_sprintf.expect: -------------------------------------------------------------------------------- 1 | ->01<- 2 | ->02<- 3 | ->03<- 4 | ->04<- 5 | ->05<- 6 | ->06<- 7 | ->07<- 8 | ->08<- 9 | ->09<- 10 | ->10<- 11 | ->11<- 12 | ->12<- 13 | ->13<- 14 | ->14<- 15 | ->15<- 16 | ->16<- 17 | ->17<- 18 | ->18<- 19 | ->19<- 20 | ->20<- 21 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/kok_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kok_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset kok_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset kok_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/20080408-1.c: -------------------------------------------------------------------------------- 1 | extern void abort (void); 2 | int main () 3 | { 4 | short ssi = 126; 5 | unsigned short usi = 65280; 6 | int fail = !(ssi < usi); 7 | if (fail) 8 | abort (); 9 | return 0; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/950511-1.c: -------------------------------------------------------------------------------- 1 | main () 2 | { 3 | unsigned long long xx; 4 | unsigned long long *x = (unsigned long long *) &xx; 5 | 6 | *x = -3; 7 | *x = *x * *x; 8 | if (*x != 9) 9 | abort (); 10 | exit (0); 11 | } 12 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/960419-1.c: -------------------------------------------------------------------------------- 1 | static int i; 2 | 3 | void 4 | check(x) 5 | int x; 6 | { 7 | if (!x) 8 | abort(); 9 | } 10 | 11 | main() 12 | { 13 | int *p = &i; 14 | 15 | check(p != (void *)0); 16 | exit (0); 17 | } 18 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/991202-1.c: -------------------------------------------------------------------------------- 1 | int x, y; 2 | 3 | int 4 | main() 5 | { 6 | x = 2; 7 | y = x; 8 | do 9 | { 10 | x = y; 11 | y = 2 * y; 12 | } 13 | while ( ! ((y - x) >= 20)); 14 | exit (0); 15 | } 16 | 17 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/divconst-3.c: -------------------------------------------------------------------------------- 1 | long long 2 | f (long long x) 3 | { 4 | return x / 10000000000LL; 5 | } 6 | 7 | main () 8 | { 9 | if (f (10000000000LL) != 1 || f (100000000000LL) != 10) 10 | abort (); 11 | exit (0); 12 | } 13 | -------------------------------------------------------------------------------- /internal/c99/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/pr43629.c: -------------------------------------------------------------------------------- 1 | int flag; 2 | extern void abort (void); 3 | int main() 4 | { 5 | int x; 6 | if (flag) 7 | x = -1; 8 | else 9 | x &= 0xff; 10 | if (x & ~0xff) 11 | abort (); 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/29_array_address.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | char a[10]; 7 | strcpy(a, "abcdef"); 8 | printf("%s\n", &a[1]); 9 | 10 | return 0; 11 | } 12 | 13 | /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/ 14 | -------------------------------------------------------------------------------- /internal/c99/testdata/tcc-0.9.26/tests/tests2/36_array_initialisers.expect: -------------------------------------------------------------------------------- 1 | 0: 12 2 | 1: 34 3 | 2: 56 4 | 3: 78 5 | 4: 90 6 | 5: 123 7 | 6: 456 8 | 7: 789 9 | 8: 8642 10 | 9: 9753 11 | 0: 12 12 | 1: 34 13 | 2: 56 14 | 3: 78 15 | 4: 90 16 | 5: 123 17 | 6: 456 18 | 7: 789 19 | 8: 8642 20 | 9: 9753 21 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/ar_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ar_IN DATE_FORMAT "%A %d %B %Y" 4 | ::msgcat::mcset ar_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ar_IN DATE_TIME_FORMAT "%A %d %B %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/bn_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset bn_IN DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset bn_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset bn_IN DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/msgs/ms_my.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ms_MY DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset ms_MY TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ms_MY DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /_tcl8.6.8/library/tzdata/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Argentina/ComodRivadavia) $TZData(:America/Argentina/Catamarca) 6 | --------------------------------------------------------------------------------