Commit f315205f authored by Thomas Munro's avatar Thomas Munro

Fix function prototypes in dependency.h.

Commit 257836a7 accidentally deleted a couple of
redundant-but-conventional "extern" keywords on function prototypes.
Put them back.
Reported-by: default avatarAlvaro Herrera <alvherre@alvh.no-ip.org>
parent 4edf9684
......@@ -223,9 +223,9 @@ extern long changeDependencyFor(Oid classId, Oid objectId,
Oid refClassId, Oid oldRefObjectId,
Oid newRefObjectId);
long changeDependenciesOf(Oid classId, Oid oldObjectId,
extern long changeDependenciesOf(Oid classId, Oid oldObjectId,
Oid newObjectId);
long changeDependenciesOn(Oid refClassId, Oid oldRefObjectId,
extern long changeDependenciesOn(Oid refClassId, Oid oldRefObjectId,
Oid newRefObjectId);
extern Oid getExtensionOfObject(Oid classId, Oid objectId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment