C+ C NAME: C Time1Add C PURPOSE: C Adds 1-element standard times C CATEGORY: C gen/for/lib C CALLING SEQUENCE: subroutine Time1Add(t,dt,u) C INPUTS: C n integer # times C t integer 1-element standard time C dt integer 1-element standard time C OUTPUTS C u integer 1-element standard time t+dt C PROCEDURE: C The two times are simply added together. C MODIFICATION HISTORY: C OCT-2003, Paul Hick (UCSD/CASS; pphick@ucsd.edu) C- integer t integer dt integer u u = t+dt return end