summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/iconv_close.c
blob: 7d5d4c4b9ce810b8ad4802975773ce0e504f3394 (plain)
1
2
3
4
5
6
7
#include <stdlib.h>
#include "dieticonv.h"

int iconv_close(iconv_t cd) {
  (void)cd;	/* shut gcc up about unused cd */
  return 0;
}