~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/memset.c

  • Committer: Monty Taylor
  • Date: 2008-07-05 15:40:12 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705154012-ui85xtskhudqblto
Got rid of pointless VAX Assembler chunks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "strings.h"
31
31
 
32
 
#if     VaxAsm
33
 
 
34
 
char *memset(char *dst,int chr, int len)
35
 
{
36
 
  asm("movc5 $0,*4(ap),8(ap),12(ap),*4(ap)");
37
 
  return dst;
38
 
}
39
 
 
40
 
#else  ~VaxAsm
41
32
 
42
33
char *memset(char *dst, register pchar chr, register int len)
43
34
{
47
38
  return dst;
48
39
}
49
40
 
50
 
#endif  VaxAsm