static struct file_operations memory_fops = {
open: memory_open, /* just a selector for the real open */
};
this is from mem.c file in uclinux
feedback
|
|
That's GNU-style initialization syntax; the | |||||||||||||||
feedback
|
|
In C the optional trailing comma was allowed in brace-enclosed initializers since the beginning of time. It is there so that you can use uniform comma placement in initializers like
This makes it easier, for example, to rearrange the initializers in the list, should such a need arise. Whether you want to use it or not is a matter of personal preference. As for the | |||||||
feedback
|