Changeset 7354b5e in mainline for uspace/lib


Ignore:
Timestamp:
2017-06-10T10:06:39Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
63e27ef
Parents:
e299dbe
Message:

Remove sys/typefmt.h

Location:
uspace/lib
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/block/block.c

    re299dbe r7354b5e  
    5151#include <malloc.h>
    5252#include <stdio.h>
    53 #include <sys/typefmt.h>
    5453#include <stacktrace.h>
     54#include <offset.h>
     55#include <inttypes.h>
    5556#include "block.h"
    5657
  • uspace/lib/c/include/offset.h

    re299dbe r7354b5e  
    3636#define LIBC_OFFSET_H_
    3737
    38 #include <libarch/types.h>
    3938#include <stdint.h>
    4039
     
    4746#define AOFF64_MAX  UINT64_MAX
    4847
     48/* off64_t, aoff64_t */
     49#define PRIdOFF64 PRId64
     50#define PRIuOFF64 PRIu64
     51#define PRIxOFF64 PRIx64
     52#define PRIXOFF64 PRIX64
    4953
    5054/** Relative offset */
  • uspace/lib/posix/include/posix/sys/types.h

    re299dbe r7354b5e  
    4444#include "libc/sys/time.h"
    4545
     46#include <libarch/types.h>
     47
    4648typedef unsigned int __POSIX_DEF__(ino_t);
    4749typedef unsigned int __POSIX_DEF__(nlink_t);
Note: See TracChangeset for help on using the changeset viewer.