e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/hg/inc/sqlProg.h src/hg/inc/sqlProg.h
index 60d02030..70d2409 100644
--- src/hg/inc/sqlProg.h
+++ src/hg/inc/sqlProg.h
@@ -1,27 +1,30 @@
 /* sqlProg - functions for building command line programs to deal with
  * sql databases.*/
+
+/* Copyright (C) 2010 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
 #ifndef SQLPROG_H
 #define SQLPROG_H
 
 void sqlExecProg(char *prog, char **progArgs, int userArgc, char *userArgv[]);
 /* Exec one of the sql programs using user and password from ~/.hg.conf.
  * progArgs is NULL-terminate array of program-specific arguments to add,
  * which maybe NULL. userArgv are arguments passed in from the command line.
  * The program is execvp-ed, this function does not return. */
 
 void sqlExecProgLocal(char *prog, char **progArgs, int userArgc, char *userArgv[]);
 /* 
  * Exec one of the sql programs using user and password defined in localDb.XXX variables from ~/.hg.conf 
  * progArgs is NULL-terminate array of program-specific arguments to add,
  * which maybe NULL. userArgv are arguments passed in from the command line.
  * The program is execvp-ed, this function does not return. 
  */
 
 void sqlExecProgProfile(char *profile, char *prog, char **progArgs, int userArgc, char *userArgv[]);
 /* 
  * Exec one of the sql programs using user and password defined in profileName.XXX variables from ~/.hg.conf 
  * progArgs is NULL-terminate array of program-specific arguments to add,
  * which maybe NULL. userArgv are arguments passed in from the command line.
  * The program is execvp-ed, this function does not return. 
  */
 #endif