Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/time.cfa

    rcd1d721 rce0b8b8  
    1010// Created On       : Tue Mar 27 17:24:56 2018
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Jul 18 21:56:01 2024
    13 // Update Count     : 64
     12// Last Modified On : Fri Jul 19 08:06:59 2024
     13// Update Count     : 75
    1414//
    1515
     
    1818#include <stdlib.h>                                                                             // putenv
    1919
    20 extern "C" size_t malloc_unfreed() { return 337; }              // unfreed storage from tzset
     20extern "C" size_t malloc_unfreed() { return 1024; }             // guess at unfreed storage from putenv
    2121
    2222int main() {
    2323        // Set fixed time location to obtain repeatable output where ever run.
    24         putenv("TZ=America/Toronto");                                           // set fixed time zone
     24        putenv( "TZ=America/Toronto" );                                         // set fixed time zone
     25        // tzset has the stupidest interface I have ever seen.
    2526        tzset();                                                                                        // set time zone
    2627
     
    8182    sout | buf;
    8283} // main
    83 
    84 // Local Variables: //
    85 // mode: c //
    86 // tab-width: 4 //
    87 // compile-command: "cfa time.cfa" //
    88 // End: //
Note: See TracChangeset for help on using the changeset viewer.