Mercurial > hg > xemacs-beta
comparison src/dgif_lib.c @ 335:54f7aa390f4f r21-0-65
Import from CVS: tag r21-0-65
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:50:39 +0200 |
parents | 19dcec799385 |
children |
comparison
equal
deleted
inserted
replaced
334:58353925ad93 | 335:54f7aa390f4f |
---|---|
910 | 910 |
911 /****************************************************************************** | 911 /****************************************************************************** |
912 * Miscellaneous utility functions * | 912 * Miscellaneous utility functions * |
913 ******************************************************************************/ | 913 ******************************************************************************/ |
914 | 914 |
915 int BitSize(int n) | 915 static int BitSize(int n) |
916 /* return smallest bitfield size n will fit in */ | 916 /* return smallest bitfield size n will fit in */ |
917 { | 917 { |
918 register int i; | 918 register int i; |
919 | 919 |
920 for (i = 1; i <= 8; i++) | 920 for (i = 1; i <= 8; i++) |