Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
f2a20568
Commit
f2a20568
authored
Nov 19, 2013
by
Thomas Jahns
🤸
Browse files
Remove unused function.
parent
df3229e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/namespace.c
View file @
f2a20568
...
...
@@ -88,25 +88,6 @@ enum {
};
#if 0
void namespaceShowbits ( int n, char *name )
{
int i;
unsigned mask;
char bitvalues[intbits + 1];
mask = 1;
for ( i = 0; i < intbits; i++ )
{
bitvalues[i] = ((unsigned)n & mask) ? '1':'0';
mask <<= 1;
}
bitvalues[intbits] = '\0';
fprintf (stdout, "%s: %s\n", name, bitvalues );
}
#endif
int
namespaceIdxEncode
(
namespaceTuple_t
tin
)
{
xassert
(
tin
.
nsp
<
NUM_NAMESPACES
&&
tin
.
idx
<
NUM_IDX
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment