Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0f928c2

Browse files
committed
UPdate memset macro.
1 parentac9e73e commit0f928c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎src/include/c.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: c.h,v 1.21 1997/09/1817:06:21 momjian Exp $
10+
* $Id: c.h,v 1.22 1997/09/1818:48:32 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -711,11 +711,11 @@ typedef struct Exception
711711
*/ \
712712
(len) <=64) \
713713
{ \
714-
int32*i= (int32*)(start); \
715-
int32*stop= (int32*)((char*)(start)+ (len)); \
714+
int32*_i= (int32*)(start); \
715+
int32*_stop= (int32*)((char*)(start)+ (len)); \
716716
\
717-
while (i<stop) \
718-
*i++=0; \
717+
while (_i<_stop) \
718+
*_i++=0; \
719719
} \
720720
else \
721721
memset((start), (val), (len)); \

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp