Changeset 432a269 in mainline for uspace/lib/posix/iso646.h


Ignore:
Timestamp:
2011-09-16T21:13:57Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3a11f17
Parents:
c0e53ff (diff), fd07e526 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/iso646.h

    rc0e53ff r432a269  
    11/*
    2  * Copyright (c) 2011 Martin Decky
     2 * Copyright (c) 2011 Jiri Zarevucky
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup imgmap
     29/** @addtogroup libposix
    3030 * @{
    3131 */
    32 /**
    33  * @file
     32/** @file Alternative spellings.
    3433 */
    3534
    36 #ifndef IMGMAP_IMGMAP_H_
    37 #define IMGMAP_IMGMAP_H_
     35#ifndef POSIX_ISO646_H_
     36#define POSIX_ISO646_H_
    3837
    39 #include <sys/types.h>
    40 #include <abi/fb/visuals.h>
     38#define and &&
     39#define and_eq &=
     40#define bitand &
     41#define bitor |
     42#define compl ˜
     43#define not !
     44#define not_eq !=
     45#define or ||
     46#define or_eq |=
     47#define xor ^
     48#define xor_eq ^=
    4149
    42 typedef struct {
    43         size_t size;
    44         sysarg_t width;
    45         sysarg_t height;
    46         visual_t visual;
    47         uint8_t data[];
    48 } imgmap_t;
    49 
    50 extern imgmap_t *imgmap_decode_tga(void *, size_t);
    51 
    52 #endif
     50#endif /* POSIX_ISO646_H_ */
    5351
    5452/** @}
Note: See TracChangeset for help on using the changeset viewer.