~vcs-imports/gawk/master

408.19.11 by Arnold D. Robbins
Add two new helper programs.
1
#include <stdio.h>
2
#include <locale.h>
3
#include <stdlib.h>
4
5
int main()
6
{
7
	setlocale(LC_ALL, "");
8
	printf("MB_CUR_MAX = %lu\n", MB_CUR_MAX);
9
	return 0;
10
}