repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* fi.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
strncpy-fix-1.c
blob
b8bc916e00896f74e544c1bb5ad0f046b9993cf5
1
/* Test that use of strncpy does not result in a "value computed is
2
not used" warning. */
3
/* { dg-do compile } */
4
/* { dg-options "-O2 -Wall" } */
5
6
#include <string.h>
7
void
8
f
(
char
*
s
)
9
{
10
strncpy
(
s
,
"::"
,
2
);
11
}