Changeset fadd381 in mainline for uspace/libc/include/libadt


Ignore:
Timestamp:
2006-09-04T20:22:14Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2def788
Parents:
fd85ae5
Message:

Indentation and formatting facelift for libc.
Libc headers now have C99 compliant guards.

Location:
uspace/libc/include/libadt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/include/libadt/fifo.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    4343 */
    4444
    45 #ifndef __FIFO_H__
    46 #define __FIFO_H__
     45#ifndef LIBC_FIFO_H_
     46#define LIBC_FIFO_H_
    4747
    4848#include <malloc.h>
     
    124124#endif
    125125
    126 
    127  /** @}
     126/** @}
    128127 */
    129  
    130  
  • uspace/libc/include/libadt/hash_table.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __HASH_TABLE_H__
    36 #define __HASH_TABLE_H__
     35#ifndef LIBC_HASH_TABLE_H_
     36#define LIBC_HASH_TABLE_H_
    3737
    3838#include <libadt/list.h>
     
    8686#endif
    8787
    88 
    89  /** @}
     88/** @}
    9089 */
    91  
    92  
  • uspace/libc/include/libadt/list.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __LIST_H__
    36 #define __LIST_H__
     35#ifndef LIBC_LIST_H_
     36#define LIBC_LIST_H_
    3737
    38 #include<unistd.h>
     38#include <unistd.h>
    3939
    4040#ifndef true
     
    191191#endif
    192192
    193 
    194  /** @}
     193/** @}
    195194 */
    196  
    197  
Note: See TracChangeset for help on using the changeset viewer.