Workaround for multiple definition of generic array handling

This commit is contained in:
Pierre Pronchery 2014-05-09 21:01:13 +02:00
parent ed3c9e0b9e
commit 83e96be596
2 changed files with 7 additions and 3 deletions

View File

@ -19,6 +19,7 @@
# define LIBSYSTEM_SYSTEM_H
# include "System/array.h"
# include "System/buffer.h"
# include "System/config.h"
# include "System/error.h"

View File

@ -1,5 +1,5 @@
/* $Id$ */
/* Copyright (c) 2006-2012 Pierre Pronchery <khorben@defora.org> */
/* Copyright (c) 2006-2014 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS System libSystem */
/* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
@ -18,12 +18,15 @@
#ifndef LIBSYSTEM_ARRAY_H
# define LIBSYSTEM_ARRAY_H
# include <sys/types.h>
/* Array */
/* macros */
# define ARRAY(type, name) \
typedef Array name ## Array; \
Array * name ## array_new(void) { return array_new(sizeof(type)); }
typedef struct _Array name ## Array; \
static Array * name ## array_new(void) \
{ return array_new(sizeof(type)); }
/* types */