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/hgc/gvfClick.c src/hg/hgc/gvfClick.c
index 1ee50cb..a266bd5 100644
--- src/hg/hgc/gvfClick.c
+++ src/hg/hgc/gvfClick.c
@@ -1,17 +1,20 @@
 /* gvfClick - handler for variants from GVF (http://www.sequenceontology.org/gvf.html) */
 
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "htmshell.h"
 #include "hgc.h"
 #include "bed8Attrs.h"
 
 static boolean isInteger(char *word)
 /* Return TRUE if all characters of word are numeric. */
 {
 if (word == NULL)
     return FALSE;
 char *s = word;
 while (*s != '\0')
     if (! isdigit(*s++))
 	return FALSE;
 return TRUE;