Changeset e299dbe in mainline


Ignore:
Timestamp:
2017-06-09T21:47:24Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7354b5e
Parents:
b4d08a4
Message:

Move fourcc_t to fourcc.h

Location:
uspace/lib
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/adt/hash.h

    rb4d08a4 re299dbe  
    3636
    3737#include <stdint.h>
    38 #include <sys/types.h>
     38#include <libarch/types.h>
    3939
    4040/** Produces a uniform hash affecting all output bits from the skewed input. */
  • uspace/lib/c/include/fourcc.h

    rb4d08a4 re299dbe  
    11/*
    2  * Copyright (c) 2006 Josef Cejka
     2 * Copyright (c) 2017 Jakub Jermar
    33 * All rights reserved.
    44 *
     
    3333 */
    3434
    35 #ifndef LIBC_SYS_TYPES_H_
    36 #define LIBC_SYS_TYPES_H_
     35#ifndef LIBC_FOURCC_H_
     36#define LIBC_FOURCC_H_
    3737
    38 #include <libarch/types.h>
     38#include <stdint.h>
    3939
    4040typedef uint32_t fourcc_t;
  • uspace/lib/draw/codec/webp.c

    rb4d08a4 re299dbe  
    3939#include <stdbool.h>
    4040#include <pixconv.h>
    41 #include <sys/types.h>
     41#include <fourcc.h>
    4242#include <stdint.h>
    4343#include <abi/fourcc.h>
  • uspace/lib/posix/include/posix/stdint.h

    rb4d08a4 re299dbe  
    102102#define UINTMAX_MAX UINT64_MAX
    103103
    104 #include "libc/sys/types.h"
    105 
    106104/*
    107105 * Fast* and least* integer types.
Note: See TracChangeset for help on using the changeset viewer.