mirror of
https://github.com/postgres/postgres.git
synced 2025-11-03 09:13:20 +03:00
20 lines
556 B
C
20 lines
556 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* dynahash
|
|
* POSTGRES dynahash.h file definitions
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/utils/dynahash.h,v 1.14 2003/11/29 22:41:15 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DYNAHASH_H
|
|
#define DYNAHASH_H
|
|
|
|
extern int my_log2(long num);
|
|
|
|
#endif /* DYNAHASH_H */
|