Ignore:
Timestamp:
Nov 26, 2006, 2:58:42 AM (19 years ago)
Author:
bird
Message:

Made sed build using MSC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sed/lib/regex_internal.h

    r604 r606  
    9292#else
    9393# define BE(expr, val) (expr)
    94 # define inline
     94# ifndef inline /* bird: silly since the rest of sed depends on this working.. */
     95#  define inline
     96# endif
    9597#endif
    9698
     
    413415#define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
    414416
    415 #include <alloca.h>
     417#if HAVE_ALLOCA_H
     418# include <alloca.h>
     419#elif HAVE_MALLOC_H
     420# include <malloc.h>
     421#endif
    416422
    417423#ifndef _LIBC
Note: See TracChangeset for help on using the changeset viewer.