Skip to content
Commit 60d12c07 authored by Rui Ueyama's avatar Rui Ueyama
Browse files

Add typedef

In the following example, `x` is defined as an alias for `int`.

  typedef x;

Below is valid C code where the second `t` is a local variable
of type int having value 3.

  typedef int t;
  t t = 3;
parent a7f24b1b
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment