cd0d3f081ff261f36b65ec1016d859ce3d50cb14
chmalee
  Mon Apr 19 14:29:28 2021 -0700
Add -fno-common to library makefiles to fix common extern variable definition errors

diff --git src/hg/inc/loweutils.h src/hg/inc/loweutils.h
index 0f549f8..ec04568 100644
--- src/hg/inc/loweutils.h
+++ src/hg/inc/loweutils.h
@@ -1,14 +1,11 @@
 /* Copyright (C) 2009 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #ifndef LOWEUTILS_H
 #define LOWEUTILS_H
 
-char *database;
-
-
 int parseDelimitedString(char *inString, char delimiter, char *outString[], int outSize);
-struct minGeneInfo* getGbProtCodeInfo(struct sqlConnection *conn, char* dbName, char *geneName);
+struct minGeneInfo* getGbProtCodeInfo(struct sqlConnection *conn, char *database, char* dbName, char *geneName);
 void getGenomeClade(struct sqlConnection *conn, char *dbName, char *genome, char *clade);
 
 #endif