~bkerensa/ubuntu/raring/yasm/fix-for-1064341

« back to all changes in this revision

Viewing changes to modules/preprocs/cpp/cpp-preproc.c

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar
  • Date: 2009-07-14 08:23:59 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090714082359-10x8mjty41gzkshs
Tags: 0.8.0-1
* New upstream release (Closes: #531047).
* Removed all tasm patches, they’ve been merged upstream.
* debian/control: set debhelper dependency to 5.0 and policy to 3.8.2.
* debian/control: mention TASM in the long description.
* debian/compat: set debhelper level to 5.
* debian/links: link tasm to ytasm and tasm.1.gz to ytasm.1.gz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
    cmdline = p = yasm_xmalloc(strlen(CPP_PROG)+CMDLINE_SIZE);
104
104
    limit = p + CMDLINE_SIZE;
105
105
    strcpy(p, CPP_PROG);
106
 
    p += 3;
 
106
    p += strlen(CPP_PROG);
107
107
 
108
108
    arg = TAILQ_FIRST(&pp->cpp_args);
109
109
 
377
377
    cpp_preproc_predefine_macro(preproc, macronameval);
378
378
}
379
379
 
 
380
static void
 
381
cpp_preproc_add_standard(yasm_preproc *preproc, const char **macros)
 
382
{
 
383
    /* TODO */
 
384
}
 
385
 
380
386
/*******************************************************************************
381
387
    Preprocessor module object.
382
388
*******************************************************************************/
391
397
    cpp_preproc_add_include_file,
392
398
    cpp_preproc_predefine_macro,
393
399
    cpp_preproc_undefine_macro,
394
 
    cpp_preproc_define_builtin
 
400
    cpp_preproc_define_builtin,
 
401
    cpp_preproc_add_standard
395
402
};