Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/time.c

    r664fc031 rbf9cb2f  
    3737#include <sys/time.h>
    3838#include <time.h>
    39 #include <bool.h>
     39#include <stdbool.h>
    4040#include <libarch/barrier.h>
    4141#include <macros.h>
     
    555555                }
    556556               
    557                 void *addr;
    558                 rc = physmem_map((void *) faddr, 1,
    559                     AS_AREA_READ | AS_AREA_CACHEABLE, &addr);
     557                void *addr = AS_AREA_ANY;
     558                rc = physmem_map(faddr, 1, AS_AREA_READ | AS_AREA_CACHEABLE,
     559                    &addr);
    560560                if (rc != EOK) {
    561561                        as_area_destroy(addr);
Note: See TracChangeset for help on using the changeset viewer.