4898794edd81be5285ea6e544acbedeaeb31bf78 max Tue Nov 23 08:10:57 2021 -0800 Fixing pointers to README file for license in all source code files. refs #27614 diff --git src/utils/sizeof/sizeof.c src/utils/sizeof/sizeof.c index c000352..c0f72c2 100644 --- src/utils/sizeof/sizeof.c +++ src/utils/sizeof/sizeof.c @@ -1,22 +1,22 @@ /* * sizeof - show size of various C types for reference * $Id: sizeof.c,v 1.3 2005/12/02 19:21:42 hiram Exp $ */ /* Copyright (C) 2011 The Regents of the University of California - * See README in this or parent directory for licensing information. */ + * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include <stdio.h> int main() { unsigned int byteOrder = 0x12345678; unsigned char *cp = (unsigned char *) &byteOrder; printf("sizeof - show size of various C types for reference\n\n"); printf(" type bytes bits\n"); printf(" char\t%d\t%d\n", (int)sizeof(char), 8*(int)sizeof(char)); printf("unsigned char\t%d\t%d\n", (int)sizeof(unsigned char), 8*(int)sizeof(unsigned char)); printf("short int\t%d\t%d\n", (int)sizeof(short int), 8*(int)sizeof(short int)); printf("u short int\t%d\t%d\n", (int)sizeof(unsigned short int),