diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-01-16 08:09:26 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-01-16 08:09:26 +0000 |
commit | 68489bdc5d85570687fb2fb385d6571c9784bb90 (patch) | |
tree | ba0ad370ce2cf7c6d1e2bcc62fa8640ca92f3664 /usr.bin/dc/extern.h | |
parent | 4c84479000c6dff676c5c2ea88c768928b9d4f8c (diff) |
delint; use size_t as stack size and ssize_t as stack pointer.
Diffstat (limited to 'usr.bin/dc/extern.h')
-rw-r--r-- | usr.bin/dc/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dc/extern.h b/usr.bin/dc/extern.h index 386b3bc7c51..b179d2e0e46 100644 --- a/usr.bin/dc/extern.h +++ b/usr.bin/dc/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.2 2003/11/04 08:10:06 otto Exp $ */ +/* $OpenBSD: extern.h,v 1.3 2006/01/16 08:09:25 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -44,7 +44,7 @@ void stack_init(struct stack *); void stack_free_value(struct value *); struct value *stack_dup_value(const struct value *, struct value *); void stack_swap(struct stack *); -int stack_size(const struct stack *); +size_t stack_size(const struct stack *); void stack_dup(struct stack *); void stack_pushnumber(struct stack *, struct number *); void stack_pushstring(struct stack *stack, char *); |