~wattazoum/albert/albert-mod

« back to all changes in this revision

Viewing changes to Alg_elements.c

  • Committer: Oumar Aziz OUATTARA (alias wattazoum)
  • Date: 2008-09-04 22:23:28 UTC
  • Revision ID: oumar_aziz_ouattara_alias_wattazoum-20080904222328-0wi5ot29nkyx72t9
Fixed all Mymalloc related issues. the project compiles and run now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include <stdio.h>
30
30
#include "Build_defs.h"
31
31
#include "Alg_elements.h"
 
32
#include  "Memory_routines.h"
32
33
 
33
34
#define assert_not_null(p)  if (p == NULL) return(NULL_PTR_ERR)
34
35
 
584
585
/*******************************************************************/ 
585
586
Alg_element *AllocAE()
586
587
{
587
 
    char *Mymalloc();
588
 
 
589
588
    Alg_element *new_alg_element = NULL;
590
589
 
591
590