l8__PAGEZERO__TEXT00__text__TEXT(( __picsymbol_stub__TEXT+N__symbol_stub__TEXT+__cstring__TEXT,__picsymbolstub2__TEXT>.__textcoal_nt__TEXT?/ @__DATA@0__data__DATA@K0__nl_symbol_ptr__DATALAL1 __la_symbol_ptr__DATA\A \1__dyld__DATAhAh1__la_sym_ptr2__DATAA$1__bss__DATAA4__common__DATAJ48__LINKEDITP @  /usr/lib/dyld 4FYBX/usr/lib/libSystem.B.dylib@J  PITIP(j]\$ML$ˉ\$UWVS<[E%U %E%&tЋ&t'gED$$Et$&U Uԅui,׉€/D But F% Eԉ%E8t E8uD$ ED$U T$E$#$^U tB}ԾUS$[ED$$U$[]UU ЄtЀ/tBB uU4$|$}u t.#8t Au :t4$|$]UWVS<[ED$_$-ED$$E܉D$$E؉D$$EԉD$$E}t~}tx}tr}tlЉDžtd4$U$T$$t64$U܉…t*D$D$$U؅t$UԅtF9u<[^_]Ð=hAtjNh`-jj+j;j+h%hA%lAUVSI"D$$"D$8u$!$!D$$$!H$8u$$!$x!H$D$d#$E!D$D$d#$+!E} EEp,p,,EE:Eu p,Ӎp,D$}t DE dEED$$ p,8 ~,#D$$r $ l,p,h,}t"h,h,p,t,E} ~+#EE09t t,E͍H$D$$H$D$$H$D$$$E"E<uED$"E‰D$ DD$D$PE$H$D$E$E$E}~&H$D$$ EEҍ"EDD$dD$H$$7E/H$D$$ -H$D$$wE$#E<uMD$$#E‰D$ D$D$PE$H$D$E$ E$E}~&H$D$$ wEEҍ$#EDD$dD$H$$%E'H$D$$ h,D$D$H$$h,؉D$D$H$$}t*h,؉D$$D$H$$(h,؉D$DD$H$$\H$D$$ ]H$D$$H$D$$H$D$$sH$D$D$YH$D$$ E$H$D$$ D$D$$D$D$$DD$D$$D$$vD$$$^D$D$FDD$d$.D$$D$$D$$dD$$$WD$D$$$D$$D$$$qDD$d$YD$$AD$$)D$$D$d$$+D$D$$ D$$D$D$D$d$$ D$D$$D$$?D$$$'D$$D$D$DD$d$D$$D$$DD$D$D$d$$$D$D$$D$$1$D$$$D$D$dD$d$D$$$t,8u3$US=E`"E;|XUEEڃ[]ÐUS$$xE}~%U"EӃ$[]ÐUSE8u"E!‹E Eԃ[]ÐUS$YED$D$X$S|!D$ ED$D$T$&EE|!E;|}uTD$$cyEu#TD$4$=ELTD$$,EU9E|TD$$ ̍TD$tE$tE$iEE TD$T$$[]ÐUS$ 8t@X@EE8uB}t E EED$ED$$E봍 8tD$$D$$$[]ÐUS$EEE8uE;E~ EEEڍD$$aD$$GEE;E~hEE8tE;EuEE8u EE)ЉD$D$$YE뎍D$$$[]X⍀PX⍀PuX|⍀|P[__dyld_mod_term_funcs__dyld_make_delayed_module_initializer_calls__dyld_image_count__dyld_get_image_name__dyld_get_image_header__dyld_NSLookupSymbolInImage__dyld_NSAddressOfSymbollibobjc__objcInitThe kernel support for the dynamic linker is not present to run this program. CWORDcharacter is nothing specialCNLnewline characterCBACKa backslash characterCSQUOTEsingle quoteCDQUOTEdouble quoteCBQUOTEbackwards single quoteCVARa dollar signCENDVARa '}' characterCLPa left paren in arithmeticCRPa right paren in arithmeticCEOFend of fileCCTLlike CWORD, except it must be escapedCSPCLthese terminate a wordISDIGITa digitISUPPERan upper case letterISLOWERa lower case letterISUNDERan underscoreISSPECLthe name of a special parameterwsyntax.csyntax.hsignedunsigned%s %d bit chars Characters can't have more than 9 bits #include #include /* Syntax classes */ #define %s %d/* %s */ /* Syntax classes for is_ functions */ #define %s %#o#define SYNBASE %d #define PEOF %d #define UPEOF ((char)%d) #define UPEOF ((unsigned char)%d) #define BASESYNTAX (basesyntax + SYNBASE) #define DQSYNTAX (dqsyntax + SYNBASE) #define SQSYNTAX (sqsyntax + SYNBASE) #define ARISYNTAX (arisyntax + SYNBASE) #include "shell.h" #include "syntax.h" /* syntax table used when not in quotes */ \'"`$}<>();&| basesyntax /* syntax table used when in double quotes */ !*?[=~:/-dqsyntax /* syntax table used when in single quotes */ sqsyntax /* syntax table used when in arithmetic */ ()arisyntax0 /* character classification table */ 0123456789abcdefghijklmnopqrstucvwxyzABCDEFGHIJKLMNOPQRSTUCVWXYZ_#?$!-*@is_typeextern const char %s[]; const char %s[%d] = { , }; #define is_digit(c) ((is_type+SYNBASE)[(unsigned char)(c)] & ISDIGIT) #define is_alpha(c) (((%s)(c)) != UPEOF && ((c) < CTL_FIRST || (c) > CTL_LAST) && isalpha((unsigned char)(c))) #define is_name(c) (((%s)(c)) != UPEOF && ((c) < CTL_FIRST || (c) > CTL_LAST) && ((c) == '_' || isalpha((unsigned char)(c)))) #define is_in_name(c) (((%s)(c)) != UPEOF && ((c) < CTL_FIRST || (c) > CTL_LAST) && ((c) == '_' || isalnum((unsigned char)(c)))) #define is_special(c) ((is_type+SYNBASE)[c] & (ISSPECL|ISDIGIT)) #define is_digit(c) ((unsigned)((c) - '0') <= 9) charunsigned char#define digit_val(c) ((c) - '0') #define digit_val(c) (digit_value[(unsigned char)(c)]) extern const char digit_value[]; const char digit_value[] = { %ld, }; ⍀P_⍀PFu⍀uP-`⍀`PxK⍀KP_6⍀6PF!⍀!P- ⍀ P⍀P$Ë$,--. .@.`...../ /@/`/////0 0@0`00001 1@1`111112 2@2/* * This file was generated by the mksyntax program. */ 0123456789:@;;@<<0123456789+++X>??8?Q?j????d((dR)dRFdRh<DRDaDfDoDxDDDDDDDDDDDDDDDDD D D)DQw$R  @@8R9f:$;fD+fD.sD0D1Q$+fm,ufvw$+xD?DCDDDCDH$?>@@@A@>$*DMDQDRDMDQDRDT$MLL @N!@L+@L567$X8DYDc"De7DgLDiaDkvDpDqDrDsDtDwDxDzD{D|DDDD DDDxDH$Y^@Z@Z\] ^J_z`@y@z@{@"$ - . / 0&d"' hAL`-Z lA d3$ERVXs@{A A A I I I I|' A' (`((A)@A*c?{?@ @ @ J J J%  J8 JR Jm J J  J $J (J  ,JM@@LlR 0J @o(u,39wIU W _NXArgc_NXArgv___progname__dyld_func_lookup__dyld_init_check__start_environdyld_stub_binding_helperstart___keymgr_dwarf2_register_sections__cthread_init_routine__mh_execute_header_atexit_catch_exception_raise_catch_exception_raise_state_catch_exception_raise_state_identity_clock_alarm_reply_do_mach_notify_dead_name_do_mach_notify_no_senders_do_mach_notify_port_deleted_do_mach_notify_send_once_do_seqnos_mach_notify_dead_name_do_seqnos_mach_notify_no_senders_do_seqnos_mach_notify_port_deleted_do_seqnos_mach_notify_send_once_errno_exit_mach_init_routine_main_receive_samples___i686.get_pc_thunk.ax___i686.get_pc_thunk.bx_is_entry_synclass___sF_fopen_fprintf_fputs_perror_printf_putc_snprintf_strlenstart.sint:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;/private/var/tmp/Csu/Csu-57//private/var/tmp/Csu/Csu-57/crt.cgcc2_compiled._start:F(0,1)=(0,1)void:t(0,1)argc:p(0,2)=r(0,2);-2147483648;2147483647;argv:p(0,3)=*(0,4)=*(0,5)=r(0,5);0;127;envp:p(0,3)int:t(0,2)char:t(0,5)p:r(0,4)q:r(0,3)term:(0,6)=*(0,7)=f(0,1)__call_mod_init_funcs_call_mod_init_funcs:f(0,1)p:(0,6)_crt_basenamecrt_basename:f(0,8)=*(0,9)=k(0,5)path:p(0,8)s:r(0,8)last:r(0,8)path:r(0,8)_crt_strbeginswithcrt_strbeginswith:f(0,2)s1:p(0,8)s2:p(0,8)i:r(0,2)s1:r(0,8)s2:r(0,8)__call_objcInit_call_objcInit:f(0,1)i:r(0,10)=r(0,10);0000000000000;0037777777777;unsigned int:t(0,10)count:r(0,10)_dyld_image_count_fn:(0,11)=*(0,12)=f(0,10)_dyld_get_image_name_fn:(0,13)=*(0,14)=f(0,8)_dyld_get_image_header_fn:(0,15)=*(0,16)=f(0,17)=*(0,18)=k(0,1)NSLookupSymbolInImage_fn:(0,19)=*(0,20)=f(0,17)NSAddressOfSymbol_fn:(0,21)=*(0,22)=f(0,23)=*(0,1)image:r(0,17)path:r(0,8)base:r(0,8)symbol:r(0,17)NXArgc:G(0,2)NXArgv:G(0,3)environ:G(0,3)__progname:G(0,4)dyld_lazy_symbol_binding_entry_pointerror_messagedyld_func_lookup_pointer_writer_digit.0_cfile_hfile_nbits_size_base_digit_contig_filltable_syntax_init_add_print_macro_output_type_macros_digit.1_digit_convert