-/* $Id: term_ascii.c,v 1.7 2010/06/30 12:27:55 kristaps Exp $ */
+/* $Id: term_ascii.c,v 1.8 2010/06/30 12:30:36 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
*
#include "term.h"
#include "main.h"
-static size_t ascii_hspan(const struct termp *,
+static double ascii_hspan(const struct termp *,
const struct roffsu *);
static size_t ascii_width(const struct termp *, char);
static void ascii_advance(struct termp *, size_t);
/* ARGSUSED */
-static size_t
+static double
ascii_hspan(const struct termp *p, const struct roffsu *su)
{
double r;
break;
}
- /* Explicitly disallow negative values. */
-
- if (r < 0.0)
- r = 0.0;
-
- return((size_t)/* LINTED */
- r);
+ return(r);
}