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/bcode.h | |
parent | 4c84479000c6dff676c5c2ea88c768928b9d4f8c (diff) |
delint; use size_t as stack size and ssize_t as stack pointer.
Diffstat (limited to 'usr.bin/dc/bcode.h')
-rw-r--r-- | usr.bin/dc/bcode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/dc/bcode.h b/usr.bin/dc/bcode.h index 87e917e5ff5..a6d2291c79b 100644 --- a/usr.bin/dc/bcode.h +++ b/usr.bin/dc/bcode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bcode.h,v 1.4 2006/01/15 19:11:59 otto Exp $ */ +/* $OpenBSD: bcode.h,v 1.5 2006/01/16 08:09:25 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -58,8 +58,8 @@ struct array { struct stack { struct value *stack; - int sp; - int size; + ssize_t sp; + size_t size; }; struct source; |