diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-11-09 05:48:28 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-11-09 05:48:28 +0000 |
commit | 1d0e30839514f2802299b75e6488ba56e9ca5f7e (patch) | |
tree | 67ef3607c9d7f109579e31927567dd33267f18d6 | |
parent | 757b829ea8e62705eb9e556ad9a98f980b21a33e (diff) | |
download | postgresql-1d0e30839514f2802299b75e6488ba56e9ca5f7e.tar.gz postgresql-1d0e30839514f2802299b75e6488ba56e9ca5f7e.zip |
Added new include file.
-rw-r--r-- | src/include/utils/dynahash.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/utils/dynahash.h b/src/include/utils/dynahash.h new file mode 100644 index 00000000000..ab78919c162 --- /dev/null +++ b/src/include/utils/dynahash.h @@ -0,0 +1,19 @@ +/*------------------------------------------------------------------------- + * + * dynahash-- + * POSTGRES dynahash.h file definitions + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: dynahash.h,v 1.1 1996/11/09 05:48:28 momjian Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef DYNAHASH_H +#define DYNAHASH_H + +extern int my_log2(long num); + +#endif DYNAHASH_H /* DYNAHASH_H */ + |