Changeset 4805495 in mainline for uspace/lib/c/generic/async


Ignore:
Timestamp:
2019-02-11T15:01:33Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab936440, d5a89a3, fc448f5
Parents:
8df5f20
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-01 23:30:11)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-11 15:01:33)
Message:

Make sure libc and abi header guards are reserved identifiers

It's only needed for a small subset that end up included from standard
headers, but for consistency this changes all of them.

Location:
uspace/lib/c/generic/async
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async/client.c

    r8df5f20 r4805495  
    9595 */
    9696
    97 #define LIBC_ASYNC_C_
     97#define _LIBC_ASYNC_C_
    9898#include <ipc/ipc.h>
    9999#include <async.h>
    100100#include "../private/async.h"
    101101#include "../private/ns.h"
    102 #undef LIBC_ASYNC_C_
     102#undef _LIBC_ASYNC_C_
    103103
    104104#include <ipc/irq.h>
  • uspace/lib/c/generic/async/ports.c

    r8df5f20 r4805495  
    2727 */
    2828
    29 #define LIBC_ASYNC_C_
     29#define _LIBC_ASYNC_C_
    3030#include <ipc/ipc.h>
    3131#include <async.h>
    3232#include "../private/async.h"
    33 #undef LIBC_ASYNC_C_
     33#undef _LIBC_ASYNC_C_
    3434
    3535#include <ipc/irq.h>
  • uspace/lib/c/generic/async/server.c

    r8df5f20 r4805495  
    9696 */
    9797
    98 #define LIBC_ASYNC_C_
     98#define _LIBC_ASYNC_C_
    9999#include <ipc/ipc.h>
    100100#include <async.h>
    101101#include "../private/async.h"
    102 #undef LIBC_ASYNC_C_
     102#undef _LIBC_ASYNC_C_
    103103
    104104#include <ipc/irq.h>
Note: See TracChangeset for help on using the changeset viewer.