Skip to content

Commit

Permalink
Missing ``static'' keyword.
Browse files Browse the repository at this point in the history
[empty commit message]
  • Loading branch information
matteo-frigo committed Jan 10, 2007
1 parent 5719264 commit 1f9ce0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rdft/direct-r2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static INT compute_batchsize(INT radix)
return (radix + 2);
}

void dobatch_r2hc(const P *ego, R *I, R *O, R *buf, INT batchsz)
static void dobatch_r2hc(const P *ego, R *I, R *O, R *buf, INT batchsz)
{
X(cpy2d_ci)(I, buf,
ego->n, ego->rs0, WS(ego->bcsr /* hack */, 1),
Expand All @@ -98,7 +98,7 @@ void dobatch_r2hc(const P *ego, R *I, R *O, R *buf, INT batchsz)
}
}

void dobatch_hc2r(const P *ego, R *I, R *O, R *buf, INT batchsz)
static void dobatch_hc2r(const P *ego, R *I, R *O, R *buf, INT batchsz)
{
if (IABS(WS(ego->csr, 1)) < IABS(ego->ivs)) {
/* transform directly from input */
Expand Down

0 comments on commit 1f9ce0c

Please sign in to comment.