Changeset 4805495 in mainline for uspace/lib/c/include/async.h


Ignore:
Timestamp:
2019-02-11T15:01:33Z (5 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/async.h

    r8df5f20 r4805495  
    3333 */
    3434
    35 #if ((defined(LIBC_IPC_H_)) && (!defined(LIBC_ASYNC_C_)))
     35#if ((defined(_LIBC_IPC_H_)) && (!defined(_LIBC_ASYNC_C_)))
    3636#error Do not intermix low-level IPC interface and async framework
    3737#endif
    3838
    39 #ifndef LIBC_ASYNC_H_
    40 #define LIBC_ASYNC_H_
     39#ifndef _LIBC_ASYNC_H_
     40#define _LIBC_ASYNC_H_
    4141
    4242#include <ipc/common.h>
Note: See TracChangeset for help on using the changeset viewer.