From 68489bdc5d85570687fb2fb385d6571c9784bb90 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 16 Jan 2006 08:09:26 +0000 Subject: delint; use size_t as stack size and ssize_t as stack pointer. --- usr.bin/dc/bcode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/dc/bcode.h') 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 @@ -58,8 +58,8 @@ struct array { struct stack { struct value *stack; - int sp; - int size; + ssize_t sp; + size_t size; }; struct source; -- cgit v1.2.3