summaryrefslogtreecommitdiff
path: root/test/regression/sizeof2.c
blob: 66e38c02e28f7473dc920ea8776034631d7d67fd (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <stdio.h>

int main()
{
  printf("%d\n", sizeof("abcd"));
  printf("%d\n", sizeof(L"abcd") / sizeof(wchar_t));
  return 0;
}