Re: C functions and int8?

From: Karel Zak <zakkr(at)zf(dot)jcu(dot)cz>
To: Forest Wilkinson <fspam(at)home(dot)com>
Cc: pgsql-sql(at)hub(dot)org
Subject: Re: C functions and int8?
Date: 2000-09-21 08:32:50
Message-ID: Pine.LNX.3.96.1000921103030.6462C-100000@ara.zf.jcu.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Thu, 21 Sep 2000, Forest Wilkinson wrote:

> I have written a few Postgres extension functions in C, and want to modify
> some of them to return an int8. However, I don't see any int8 definition
> in postgres.h. (I have the 7.0.2 RPMs installed.) How should I
> accomplish this?

in the source tree: src/include/c.h

typedef signed char int8; /* == 8 bits */

... but I not sure if this file is included in the RPM package.

Karel

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Sergio de Almeida Lenzi 2000-09-21 12:15:23 Re: sql query not using indexes
Previous Message Forest Wilkinson 2000-09-21 08:05:55 C functions and int8?