~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_static.c

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/*
17
17
  Static variables for heap library. All definied here for easy making of
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "heap_priv.h"
22
 
#include <list>
23
 
 
24
 
using namespace std;
25
 
 
26
 
list<HP_INFO *> heap_open_list;
27
 
list<HP_SHARE *> heap_share_list;
28
 
 
 
21
#include "heapdef.h"
 
22
 
 
23
LIST *heap_open_list=0,*heap_share_list=0;