~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_static.c

  • Committer: Monty Taylor
  • Date: 2008-07-26 16:22:28 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080726162228-atatk41l6w4np70m
Added gettext calls in to my_getopt.c and drizzle.c

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
#ifndef _global_h
 
22
#include "heapdef.h"
 
23
#endif
 
24
 
 
25
LIST *heap_open_list=0,*heap_share_list=0;