# HG changeset patch # User Mike Becker # Date 1456500140 -3600 # Node ID e056e4e0b08eef54016b6627c415a4c4635f0785 # Parent dee5a88c4db7d41689752e1d3504eeb30bcfbac2 removed dependency to stdint.h in stack header diff -r dee5a88c4db7 -r e056e4e0b08e ucx/stack.h --- a/ucx/stack.h Fri Feb 26 16:00:18 2016 +0100 +++ b/ucx/stack.h Fri Feb 26 16:22:20 2016 +0100 @@ -39,7 +39,6 @@ #define UCX_STACK_H #include "ucx.h" -#include #include "allocator.h" #ifdef __cplusplus @@ -179,7 +178,7 @@ * @see ucx_stack_free * @see ucx_stack_popn */ -#define ucx_stack_pop(stack, dest) ucx_stack_popn(stack, dest, SIZE_MAX) +#define ucx_stack_pop(stack, dest) ucx_stack_popn(stack, dest, (size_t)-1) /** * Removes the top most element from the stack and copies the content to