COMPILATION LISTING OF SEGMENT pl1_date_ Compiled by: Multics PL/I Compiler, Release 28d, of September 14, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/03/83 1441.2 mst Mon Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright (c) 1972 by Massachusetts Institute of * 5* * Technology and Honeywell Information Systems, Inc. * 6* * * 7* * * 8* ****************************************************** */ 9 10 /* This procedure returns a string of form YYMMDD 11* where YY is current year 12* MM is current month 13* DD is current day */ 14 15 /* Rewritten Paril 1980 by C. Hornig */ 16 17 pl1_date_: 18 procedure returns (char (6)); 19 20 dcl decode_clock_value_ entry (fixed bin (71), fixed bin, fixed bin, fixed bin, fixed bin (71), fixed bin, char (3)); 21 22 dcl (year, month, day) fixed bin; 23 24 dcl 1 date_picture unaligned, 25 2 (year, month, day) pic "99"; 26 27 dcl (clock, string) builtin; 28 29 call decode_clock_value_ (clock (), month, day, year, 0, 0, ("")); 30 date_picture.year = mod (year, 100); 31 date_picture.month = month; 32 date_picture.day = day; 33 return (string (date_picture)); 34 end pl1_date_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/03/83 1006.0 pl1_date_.pl1 >spec>on>pl128d>pl1_date_.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. clock builtin function dcl 27 ref 29 29 date_picture ILLEGAL 0 structure level 1 packed unaligned dcl 24 day automatic fixed bin(17,0) dcl 22 set ref 29* decode_clock_value_ 000000 constant entry external dcl 20 ref 29 month ILLEGAL 0 picture level 2 in structure "date_picture" unaligned dcl 24 in procedure "pl1_date_" set ref 31* month automatic fixed bin(17,0) dcl 22 in procedure "pl1_date_" set ref 29* 31 year ILLEGAL 0 picture level 2 in structure "date_picture" packed unaligned dcl 24 in procedure "pl1_date_" set ref 30* year automatic fixed bin(17,0) dcl 22 in procedure "pl1_date_" set ref 29* 30 NAME DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. string builtin function dcl 27 NAME DECLARED BY EXPLICIT CONTEXT. pl1_date_ 000000 constant entry external dcl 17 NAME DECLARED BY CONTEXT OR IMPLICATION. mod builtin function ref 30 ERROR 459, SEVERITY 3 ON LINE 24 Syntax error in the fixed-point picture declared for "year". ERROR 440, SEVERITY 3 ON LINE 30 Syntax error in a picture declared for "cp.17". FATAL ERROR 335 ON LINE 31 Compiler error: not_in_read_bracket condition while in the semantic translator. Correct all source program errors and recompile. If this message persists, contact the compiler maintenance personnel. ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved