From 8dcf998dd148e41fc48071d5ad36828732c7faa4 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 26 Oct 2001 20:45:33 +0000 Subject: Remove no-longer-needed dependencies on DLSUFFIX. --- src/tutorial/funcs.source | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tutorial/funcs.source') diff --git a/src/tutorial/funcs.source b/src/tutorial/funcs.source index b2b20e6928d..8438e6daece 100644 --- a/src/tutorial/funcs.source +++ b/src/tutorial/funcs.source @@ -6,7 +6,7 @@ -- -- Copyright (c) 1994-5, Regents of the University of California -- --- $Id: funcs.source,v 1.4 2000/03/28 02:49:19 tgl Exp $ +-- $Id: funcs.source,v 1.5 2001/10/26 20:45:33 tgl Exp $ -- --------------------------------------------------------------------------- @@ -126,16 +126,16 @@ SELECT name(high_pay()) AS overpaid; ----------------------------- CREATE FUNCTION add_one(int4) RETURNS int4 - AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c'; + AS '_OBJWD_/funcs' LANGUAGE 'c'; CREATE FUNCTION makepoint(point, point) RETURNS point - AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c'; + AS '_OBJWD_/funcs' LANGUAGE 'c'; CREATE FUNCTION copytext(text) RETURNS text - AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c'; + AS '_OBJWD_/funcs' LANGUAGE 'c'; CREATE FUNCTION c_overpaid(EMP, int4) RETURNS bool - AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c'; + AS '_OBJWD_/funcs' LANGUAGE 'c'; SELECT add_one(3) AS four; -- cgit v1.2.3